mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
203 B
Rust
14 lines
203 B
Rust
// 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() {}
|