summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/erroneous-const.stderr
blob: 7087a6f668c82986e50489910ac5fe9ef4557294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
warning: this operation will panic at runtime
  --> $DIR/erroneous-const.rs:6:22
   |
LL |     const VOID: () = [()][2];
   |                      ^^^^^^^ index out of bounds: the length is 1 but the index is 2
   |
note: the lint level is defined here
  --> $DIR/erroneous-const.rs:2:20
   |
LL | #![warn(const_err, unconditional_panic)]
   |                    ^^^^^^^^^^^^^^^^^^^

warning: any use of this value will cause an error
  --> $DIR/erroneous-const.rs:6:22
   |
LL |     const VOID: () = [()][2];
   |     -----------------^^^^^^^-
   |                      |
   |                      index out of bounds: the length is 1 but the index is 2
   |
note: the lint level is defined here
  --> $DIR/erroneous-const.rs:2:9
   |
LL | #![warn(const_err, unconditional_panic)]
   |         ^^^^^^^^^

error[E0080]: evaluation of constant value failed
  --> $DIR/erroneous-const.rs:12:17
   |
LL |         let _ = PrintName::<T>::VOID;
   |                 ^^^^^^^^^^^^^^^^^^^^ referenced constant has errors

error[E0080]: could not evaluate static initializer
  --> $DIR/erroneous-const.rs:16:22
   |
LL | pub static FOO: () = no_codegen::<i32>();
   |                      ^^^^^^^^^^^^^^^^^^^ referenced constant has errors

error: aborting due to 2 previous errors; 2 warnings emitted

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