mirror of https://github.com/rust-lang/rust
40 lines
1.8 KiB
Plaintext
40 lines
1.8 KiB
Plaintext
error[E0080]: evaluation of constant value failed
|
|
--> $DIR/const-errs-dont-conflict-103369.rs:10:5
|
|
|
|
|
LL | panic!("Some error occurred");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the evaluated program panicked at 'Some error occurred', $DIR/const-errs-dont-conflict-103369.rs:10:5
|
|
|
|
|
note: inside `my_fn`
|
|
--> $DIR/const-errs-dont-conflict-103369.rs:10:5
|
|
|
|
|
LL | panic!("Some error occurred");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
note: inside `<() as ConstGenericTrait<{my_fn(1)}>>::{constant#0}`
|
|
--> $DIR/const-errs-dont-conflict-103369.rs:5:25
|
|
|
|
|
LL | impl ConstGenericTrait<{my_fn(1)}> for () {}
|
|
| ^^^^^^^^
|
|
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0080]: evaluation of constant value failed
|
|
--> $DIR/const-errs-dont-conflict-103369.rs:10:5
|
|
|
|
|
LL | panic!("Some error occurred");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the evaluated program panicked at 'Some error occurred', $DIR/const-errs-dont-conflict-103369.rs:10:5
|
|
|
|
|
note: inside `my_fn`
|
|
--> $DIR/const-errs-dont-conflict-103369.rs:10:5
|
|
|
|
|
LL | panic!("Some error occurred");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
note: inside `<() as ConstGenericTrait<{my_fn(2)}>>::{constant#0}`
|
|
--> $DIR/const-errs-dont-conflict-103369.rs:7:25
|
|
|
|
|
LL | impl ConstGenericTrait<{my_fn(2)}> for () {}
|
|
| ^^^^^^^^
|
|
= note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|