blob: 5801f701ff8f01af9de4cb27aac81320f0110955 [file] [log] [blame]
error[E0379]: trait fns cannot be declared const
--> $DIR/const-fn-not-in-trait.rs:17:5
|
LL | const fn f() -> u32;
| ^^^^^ trait fns cannot be const
error[E0379]: trait fns cannot be declared const
--> $DIR/const-fn-not-in-trait.rs:19:5
|
LL | const fn g() -> u32 { 0 }
| ^^^^^ trait fns cannot be const
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0379`.