rust/src/test/ui/issues/issue-57924.rs
2019-06-18 17:02:26 +03:00

11 lines
180 B
Rust

pub struct Gcm<E>(E);
impl<E> Gcm<E> {
pub fn crash(e: E) -> Self {
Self::<E>(e)
//~^ ERROR type arguments are not allowed for this type
}
}
fn main() {}