Deadbeef | 81da6a6 | 2024-06-21 12:22:29 | [diff] [blame] | 1 | warning: the feature `effects` is incomplete and may not be safe to use and/or cause compiler crashes |
| 2 | --> $DIR/specializing-constness.rs:1:30 |
| 3 | | |
| 4 | LL | #![feature(const_trait_impl, effects, min_specialization, rustc_attrs)] |
| 5 | | ^^^^^^^ |
| 6 | | |
| 7 | = note: see issue #102090 <https://github.com/rust-lang/rust/issues/102090> for more information |
| 8 | = note: `#[warn(incomplete_features)]` on by default |
| 9 | |
Ben Reeves | c0ae62e | 2022-11-06 06:07:06 | [diff] [blame] | 10 | error: cannot specialize on const impl with non-const impl |
Deadbeef | 4c6ddc0 | 2023-04-16 11:12:37 | [diff] [blame] | 11 | --> $DIR/specializing-constness.rs:23:1 |
Ben Reeves | c0ae62e | 2022-11-06 06:07:06 | [diff] [blame] | 12 | | |
Deadbeef | 4c6ddc0 | 2023-04-16 11:12:37 | [diff] [blame] | 13 | LL | impl<T: Spec + Sup> A for T { |
| 14 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Ben Reeves | c0ae62e | 2022-11-06 06:07:06 | [diff] [blame] | 15 | |
Michael Goulet | 8b7b8e5 | 2024-10-22 03:22:57 | [diff] [blame^] | 16 | error: aborting due to 1 previous error; 1 warning emitted |
Deadbeef | 36e8c11 | 2022-09-24 20:15:19 | [diff] [blame] | 17 | |