mirror of https://github.com/rust-lang/rust
28 lines
666 B
Rust
28 lines
666 B
Rust
//@ edition:2021
|
|
|
|
pub trait Trait<'a, T> {}
|
|
|
|
pub struct Struct<T>;
|
|
//~^ ERROR `T` is never used
|
|
pub enum Enum<T> {}
|
|
//~^ ERROR `T` is never used
|
|
|
|
pub union Union<T> {
|
|
//~^ ERROR `T` is never used
|
|
f1: usize,
|
|
}
|
|
|
|
impl<'a, T> Struct<T> for Trait<'a, T> {}
|
|
//~^ ERROR expected trait, found struct `Struct`
|
|
//~| ERROR trait objects must include the `dyn` keyword
|
|
|
|
impl<'a, T> Enum<T> for Trait<'a, T> {}
|
|
//~^ ERROR expected trait, found enum `Enum`
|
|
//~| ERROR trait objects must include the `dyn` keyword
|
|
|
|
impl<'a, T> Union<T> for Trait<'a, T> {}
|
|
//~^ ERROR expected trait, found union `Union`
|
|
//~| ERROR trait objects must include the `dyn` keyword
|
|
|
|
fn main() {}
|