2023-07-27 10:51:02 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $SRC_DIR/core/src/ops/function.rs:LL:COL
|
2022-12-28 02:55:01 -06:00
|
|
|
|
|
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
|
2022-12-28 02:55:01 -06:00
|
|
|
|
|
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
|
2022-12-28 02:55:01 -06:00
|
|
|
|
|
|
|
|
LL | const _: () = assert!(need_const_closure(Tr::a) == 42);
|
2023-03-24 04:17:51 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-12-28 02:55:01 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2023-07-27 10:51:02 -05:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|