| error: the `rustc_comptime` attribute cannot be used on required trait methods |
| --> $DIR/trait_comptime.rs:4:7 |
| | |
| LL | #[rustc_comptime] |
| | ^^^^^^^^^^^^^^ |
| | |
| = help: the `rustc_comptime` attribute can be applied to functions with a body and inherent impl blocks |
| |
| error: the `rustc_comptime` attribute cannot be used on provided trait methods |
| --> $DIR/trait_comptime.rs:8:7 |
| | |
| LL | #[rustc_comptime] |
| | ^^^^^^^^^^^^^^ |
| | |
| = help: the `rustc_comptime` attribute can be applied to functions, inherent impl blocks, and inherent methods |
| |
| error: the `rustc_comptime` attribute cannot be used on trait methods in impl blocks |
| --> $DIR/trait_comptime.rs:21:7 |
| | |
| LL | #[rustc_comptime] |
| | ^^^^^^^^^^^^^^ |
| | |
| = help: the `rustc_comptime` attribute can be applied to functions, inherent impl blocks, and inherent methods |
| |
| error: aborting due to 3 previous errors |
| |