rust/tests/ui/mod-subitem-as-enum-variant.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
199 B
Rust
Raw Normal View History

mod Mod {
pub struct FakeVariant<T>(pub T);
}
fn main() {
Mod::FakeVariant::<i32>(0);
Mod::<i32>::FakeVariant(0);
2022-06-01 23:55:30 +00:00
//~^ ERROR type arguments are not allowed on module `Mod` [E0109]
}