blob: ec809d44e942a82ca57e33a03c12cac7eef928c3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
mod Mod {
pub struct FakeVariant<T>(pub T);
}
fn main() {
Mod::FakeVariant::<i32>(0);
Mod::<i32>::FakeVariant(0);
//~^ ERROR type arguments are not allowed on this entity [E0109]
}
|