2018-12-17 18:40:22 -06:00
|
|
|
mod Mod {
|
|
|
|
pub struct FakeVariant<T>(pub T);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
Mod::FakeVariant::<i32>(0);
|
|
|
|
Mod::<i32>::FakeVariant(0);
|
2019-03-20 13:32:52 -05:00
|
|
|
//~^ ERROR type arguments are not allowed for this type [E0109]
|
2018-12-17 18:40:22 -06:00
|
|
|
}
|