blob: 0177b70a6988504244096e7bf1c88142788a919e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// compile-pass
#![allow(dead_code)]
#![allow(non_camel_case_types)]
// Issue #1821 - Don't recurse trying to typecheck this
// pretty-expanded FIXME #23616
enum t {
foo(Vec<t>)
}
pub fn main() {}
|