2020-02-11 08:19:21 +01:00
|
|
|
error[E0379]: functions in traits cannot be declared const
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/feature-gate-min_const_fn.rs:6:5
|
2018-08-22 15:56:37 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | const fn foo() -> u32;
|
2020-02-11 08:19:21 +01:00
|
|
|
| ^^^^^ functions in traits cannot be const
|
2018-08-22 15:56:37 +02:00
|
|
|
|
2020-02-11 08:19:21 +01:00
|
|
|
error[E0379]: functions in traits cannot be declared const
|
2021-04-25 11:02:08 +02:00
|
|
|
--> $DIR/feature-gate-min_const_fn.rs:7:5
|
2018-08-22 15:56:37 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | const fn bar() -> u32 { 0 }
|
2020-02-11 08:19:21 +01:00
|
|
|
| ^^^^^ functions in traits cannot be const
|
2018-08-22 15:56:37 +02:00
|
|
|
|
2020-02-11 08:19:21 +01:00
|
|
|
error[E0379]: functions in traits cannot be declared const
|
2021-04-25 11:02:08 +02:00
|
|
|
--> $DIR/feature-gate-min_const_fn.rs:11:5
|
2018-08-22 15:56:37 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | const fn foo() -> u32 { 0 }
|
2020-02-11 08:19:21 +01:00
|
|
|
| ^^^^^ functions in traits cannot be const
|
2018-08-22 15:56:37 +02:00
|
|
|
|
2021-04-25 11:02:08 +02:00
|
|
|
error: aborting due to 3 previous errors
|
2018-08-22 15:56:37 +02:00
|
|
|
|
2021-04-25 11:02:08 +02:00
|
|
|
For more information about this error, try `rustc --explain E0379`.
|