1
Fork 0
rust/src/test/ui/rfc-2632-const-trait-impl/const-check-fns-in-const-impl.stderr

10 lines
339 B
Text
Raw Normal View History

2020-09-17 10:32:07 -07:00
error[E0015]: calls in constant functions are limited to constant functions, tuple structs and tuple variants
2021-07-16 11:54:00 +08:00
--> $DIR/const-check-fns-in-const-impl.rs:11:16
|
LL | fn foo() { non_const() }
| ^^^^^^^^^^^
error: aborting due to previous error
2020-09-17 10:32:07 -07:00
For more information about this error, try `rustc --explain E0015`.