blob: 9328d1a9045e57b4483d7cd1a5ce01e8f48217df [file] [log] [blame]
mod Mod {
pub struct FakeVariant<T>(pub T);
}
fn main() {
Mod::FakeVariant::<i32>(0);
Mod::<i32>::FakeVariant(0);
//~^ ERROR type arguments are not allowed for this type [E0109]
}