]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mismatched_types/const-fn-in-trait.stderr
Merge commit 'bf1c6f9871f430e284b17aa44059e0d0395e28a6' into clippyup
[rust.git] / src / test / ui / mismatched_types / const-fn-in-trait.stderr
1 error[E0379]: functions in traits cannot be declared const
2   --> $DIR/const-fn-in-trait.rs:5:5
3    |
4 LL |     const fn g();
5    |     ^^^^^ functions in traits cannot be const
6
7 error[E0379]: functions in traits cannot be declared const
8   --> $DIR/const-fn-in-trait.rs:9:5
9    |
10 LL |     const fn f() -> u32 { 22 }
11    |     ^^^^^ functions in traits cannot be const
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0379`.