blob: dc2942225e3de6205b0e6d1c723acbda0b768304 [file] [log] [blame]
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() {}