summary refs log tree commit diff
path: root/src/test/ui/extern-const.stderr
blob: f416f596b25520806a51f7295cd46cb369bf24af (plain)
1
2
3
4
5
6
7
8
error: extern items cannot be `const`
  --> $DIR/extern-const.rs:14:5
   |
LL |     const C: u8; //~ ERROR extern items cannot be `const`
   |     ^^^^^ help: instead try using: `static`

error: aborting due to previous error