mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
199 B
Rust
10 lines
199 B
Rust
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 module `Mod` [E0109]
|
|
}
|