rust/src/test/ui/parser/trait-pub-assoc-const.stderr

11 lines
313 B
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: expected one of `async`, `const`, `extern`, `fn`, `type`, `unsafe`, or `}`, found `pub`
2018-12-25 09:56:47 -06:00
--> $DIR/trait-pub-assoc-const.rs:4:5
2018-10-20 15:36:17 -05:00
|
LL | trait Foo {
| - expected one of 7 possible tokens here
LL | pub const Foo: u32;
| ^^^ unexpected token
error: aborting due to previous error