2019-11-03 18:00:00 -06:00
|
|
|
// check-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 08:02:01 -05:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2012-02-13 17:58:14 -06:00
|
|
|
// Issue #1821 - Don't recurse trying to typecheck this
|
2014-03-05 17:28:08 -06:00
|
|
|
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2012-02-13 17:58:14 -06:00
|
|
|
enum t {
|
2014-03-05 17:28:08 -06:00
|
|
|
foo(Vec<t>)
|
2012-02-13 17:58:14 -06:00
|
|
|
}
|
2013-02-14 13:47:00 -06:00
|
|
|
pub fn main() {}
|