blob: 1d82f89d7a1a3c0acde43258d939119eefa601a2 [file] [log] [blame]
//@ check-pass
#![allow(unconditional_recursion)]
fn test() -> impl Sized {
test()
}
fn main() {}