]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-1821.rs
Rollup merge of #100168 - WaffleLapkin:improve_diagnostics_for_missing_type_in_a_cons...
[rust.git] / src / test / ui / issues / issue-1821.rs
1 // check-pass
2 #![allow(dead_code)]
3 #![allow(non_camel_case_types)]
4
5 // Issue #1821 - Don't recurse trying to typecheck this
6
7
8 // pretty-expanded FIXME #23616
9
10 enum t {
11     foo(Vec<t>)
12 }
13 pub fn main() {}