summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/public-instead-of-pub-3.stderr
blob: 72efae08dda8e5c4c4bd5dbb48db30011cdc8501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: expected one of `!` or `::`, found keyword `const`
  --> $DIR/public-instead-of-pub-3.rs:3:12
   |
LL |     public const X: i32 = 123;
   |            ^^^^^ expected one of `!` or `::`
   |
help: write `pub` instead of `public` to make the item public
   |
LL |     pub const X: i32 = 123;
   |     ~~~

error: aborting due to previous error