summary refs log tree commit diff
path: root/src/test/ui/parser/trait-pub-assoc-const.rs
blob: 3ee2dc1ae18fb4ef2e8809ed69600fbd67521dfd (plain)
1
2
3
4
5
6
trait Foo {
    pub const Foo: u32;
    //~^ ERROR expected one of `async`, `const`, `extern`, `fn`, `type`, `unsafe`, or `}`, found
}

fn main() {}