]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/issue-17718-references.stderr
Auto merge of #106090 - WaffleLapkin:dereffffffffff, r=Nilstrieb
[rust.git] / tests / ui / consts / issue-17718-references.stderr
1 error[E0013]: constants cannot refer to statics
2   --> $DIR/issue-17718-references.rs:9:29
3    |
4 LL | const T2: &'static usize = &S;
5    |                             ^
6    |
7    = help: consider extracting the value of the `static` to a `const`, and referring to that
8
9 error[E0013]: constants cannot refer to statics
10   --> $DIR/issue-17718-references.rs:14:19
11    |
12 LL | const T6: usize = S;
13    |                   ^
14    |
15    = help: consider extracting the value of the `static` to a `const`, and referring to that
16
17 error[E0013]: constants cannot refer to statics
18   --> $DIR/issue-17718-references.rs:19:33
19    |
20 LL | const T10: Struct = Struct { a: S };
21    |                                 ^
22    |
23    = help: consider extracting the value of the `static` to a `const`, and referring to that
24
25 error: aborting due to 3 previous errors
26
27 For more information about this error, try `rustc --explain E0013`.