]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/trait-pub-assoc-ty.rs
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / parser / trait-pub-assoc-ty.rs
1 trait Foo {
2     pub type Foo;
3     //~^ ERROR expected one of `async`, `const`, `extern`, `fn`, `type`, `unsafe`, or `}`, found
4 }
5
6 fn main() {}