|
| 1 | +warning: trait objects without an explicit `dyn` are deprecated |
| 2 | + --> $DIR/avoid-ice-on-warning-2.rs:1:13 |
| 3 | + | |
| 4 | +LL | fn id<F>(f: Copy) -> usize { |
| 5 | + | ^^^^ |
| 6 | + | |
| 7 | + = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! |
| 8 | + = note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html> |
| 9 | + = note: `Copy` it is not object safe, so it can't be `dyn` |
| 10 | + = note: `#[warn(bare_trait_objects)]` on by default |
| 11 | +help: use a new generic type parameter, constrained by `Copy` |
| 12 | + | |
| 13 | +LL | fn id<F, T: Copy>(f: T) -> usize { |
| 14 | + | +++++++++ ~ |
| 15 | +help: you can also use an opaque type, but users won't be able to specify the type parameter when calling the `fn`, having to rely exclusively on type inference |
| 16 | + | |
| 17 | +LL | fn id<F>(f: impl Copy) -> usize { |
| 18 | + | ++++ |
| 19 | + |
| 20 | +warning: trait objects without an explicit `dyn` are deprecated |
| 21 | + --> $DIR/avoid-ice-on-warning-2.rs:1:13 |
| 22 | + | |
| 23 | +LL | fn id<F>(f: Copy) -> usize { |
| 24 | + | ^^^^ |
| 25 | + | |
| 26 | + = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! |
| 27 | + = note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html> |
| 28 | + = note: `Copy` it is not object safe, so it can't be `dyn` |
| 29 | + = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no` |
| 30 | +help: use a new generic type parameter, constrained by `Copy` |
| 31 | + | |
| 32 | +LL | fn id<F, T: Copy>(f: T) -> usize { |
| 33 | + | +++++++++ ~ |
| 34 | +help: you can also use an opaque type, but users won't be able to specify the type parameter when calling the `fn`, having to rely exclusively on type inference |
| 35 | + | |
| 36 | +LL | fn id<F>(f: impl Copy) -> usize { |
| 37 | + | ++++ |
| 38 | + |
| 39 | +error[E0038]: the trait `Copy` cannot be made into an object |
| 40 | + --> $DIR/avoid-ice-on-warning-2.rs:1:13 |
| 41 | + | |
| 42 | +LL | fn id<F>(f: Copy) -> usize { |
| 43 | + | ^^^^ `Copy` cannot be made into an object |
| 44 | + | |
| 45 | + = note: the trait cannot be made into an object because it requires `Self: Sized` |
| 46 | + = note: for a trait to be "object safe" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety> |
| 47 | + |
| 48 | +error: aborting due to 1 previous error; 2 warnings emitted |
| 49 | + |
| 50 | +For more information about this error, try `rustc --explain E0038`. |
0 commit comments