]> git.proxmox.com Git - rustc.git/blob - src/test/ui/mismatched_types/const-fn-in-trait.stderr
New upstream version 1.13.0+dfsg1
[rustc.git] / src / test / ui / mismatched_types / const-fn-in-trait.stderr
1 error[E0379]: trait fns cannot be declared const
2 --> $DIR/const-fn-in-trait.rs:17:5
3 |
4 17 | const fn g();
5 | ^^^^^ trait fns cannot be const
6
7 error[E0379]: trait fns cannot be declared const
8 --> $DIR/const-fn-in-trait.rs:21:5
9 |
10 21 | const fn f() -> u32 { 22 }
11 | ^^^^^ trait fns cannot be const
12
13 error: aborting due to 2 previous errors
14