13 lines
260 B
Rust
Raw Normal View History

2023-07-10 03:10:03 +02:00
// FIXME(generic_const_items): This leads to a stack overflow in the compiler!
//@ known-bug: unknown
//@ ignore-test
2023-07-10 03:10:03 +02:00
#![feature(generic_const_items)]
#![allow(incomplete_features)]
const RECUR<T>: () = RECUR::<(T,)>;
fn main() {
let _ = RECUR::<()>;
}