]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tag-type-args.rs
Merge commit '3e7c6dec244539970b593824334876f8b6ed0b18' into clippyup
[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!(); }