rust/tests/ui/rfcs/rfc-2632-const-trait-impl/const-closure-trait-method-fail.stderr

22 lines
770 B
Plaintext
Raw Normal View History

2023-07-27 10:51:02 -05:00
error[E0080]: evaluation of constant value failed
--> $SRC_DIR/core/src/ops/function.rs:LL:COL
|
2023-07-27 10:51:02 -05:00
= note: calling non-const function `<() as Tr>::a`
|
note: inside `<fn(()) -> i32 {<() as Tr>::a} as FnOnce<((),)>>::call_once - shim(fn(()) -> i32 {<() as Tr>::a})`
--> $SRC_DIR/core/src/ops/function.rs:LL:COL
note: inside `need_const_closure::<fn(()) -> i32 {<() as Tr>::a}>`
--> $DIR/const-closure-trait-method-fail.rs:15:5
|
2023-07-27 10:51:02 -05:00
LL | x(())
| ^^^^^
note: inside `_`
2023-04-16 06:12:37 -05:00
--> $DIR/const-closure-trait-method-fail.rs:18:23
|
LL | const _: () = assert!(need_const_closure(Tr::a) == 42);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
2023-07-27 10:51:02 -05:00
For more information about this error, try `rustc --explain E0080`.