blob: 9328d1a9045e57b4483d7cd1a5ce01e8f48217df (
plain)
1
2
3
4
5
6
7
8
9
|
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]
}
|