blob: 76d60962c38be06d8fb0f2fb64871cfd2a25e4ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//@ check-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() {}
|