summaryrefslogtreecommitdiffstats
path: root/tests/ui/extern/extern-const.stderr
blob: 4c2c3d6e0a848497b5ee42e43fd49393feda3744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error: extern items cannot be `const`
  --> $DIR/extern-const.rs:15:11
   |
LL |     const rust_dbg_static_mut: libc::c_int;
   |     ------^^^^^^^^^^^^^^^^^^^
   |     |
   |     help: try using a static value: `static`
   |
   = note: for more information, visit https://doc.rust-lang.org/std/keyword.extern.html

error: aborting due to 1 previous error