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

fn main() {}