]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-17718-references.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / 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`.