]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tag-type-args.rs
Rollup merge of #61207 - taiki-e:arbitrary_self_types-lifetime-elision-2, r=Centril
[rust.git] / src / test / ui / tag-type-args.rs
1 enum Quux<T> { Bar }
2
3 fn foo(c: Quux) { assert!((false)); } //~ ERROR wrong number of type arguments
4
5 fn main() { panic!(); }