granite-rust/src/test/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
197 B
Rust
Raw Normal View History

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