summary refs log tree commit diff
path: root/src/test/ui/issue-17718-references.stderr
blob: 6e89a83b308720e4e95d40b25be952fce8f8ccb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0013]: constants cannot refer to statics, use a constant instead
  --> $DIR/issue-17718-references.rs:19:28
   |
LL | const T2: &'static usize = &S; //~ ERROR: constants cannot refer to statics
   |                            ^^

error[E0013]: constants cannot refer to statics, use a constant instead
  --> $DIR/issue-17718-references.rs:24:19
   |
LL | const T6: usize = S; //~ ERROR: constants cannot refer to statics
   |                   ^

error[E0013]: constants cannot refer to statics, use a constant instead
  --> $DIR/issue-17718-references.rs:29:33
   |
LL | const T10: Struct = Struct { a: S };
   |                                 ^

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0013`.