summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/auxiliary/issue-36031.rs
blob: da688139e3462302d80f671a1cffe78af6c84d73 (plain)
1
2
3
4
5
6
7
8
9
pub trait Foo {
    const FOO: usize;
}

pub struct Bar;

impl Bar {
    pub const BAR: usize = 3;
}