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