rust/tests/ui/feature-gates/feature-gate-min_const_fn.s...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
872 B
Plaintext
Raw Normal View History

error[E0379]: functions in traits cannot be declared const
2018-12-25 23:56:47 +08:00
--> $DIR/feature-gate-min_const_fn.rs:6:5
|
2019-03-09 20:03:44 +08:00
LL | const fn foo() -> u32;
2024-01-02 07:57:30 +08:00
| ^^^^^-
| |
| functions in traits cannot be const
| help: remove the `const`
error[E0379]: functions in traits cannot be declared const
--> $DIR/feature-gate-min_const_fn.rs:7:5
|
2019-03-09 20:03:44 +08:00
LL | const fn bar() -> u32 { 0 }
2024-01-02 07:57:30 +08:00
| ^^^^^-
| |
| functions in traits cannot be const
| help: remove the `const`
2024-01-02 07:26:50 +08:00
error[E0379]: functions in trait impls cannot be declared const
--> $DIR/feature-gate-min_const_fn.rs:11:5
|
2019-03-09 20:03:44 +08:00
LL | const fn foo() -> u32 { 0 }
2024-01-02 07:57:30 +08:00
| ^^^^^-
| |
| functions in trait impls cannot be const
| help: remove the `const`
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0379`.