about summary refs log tree commit diff
path: root/tests/ui/impl-trait/recursive-impl-trait-type-direct.rs
blob: 1d82f89d7a1a3c0acde43258d939119eefa601a2 (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass

#![allow(unconditional_recursion)]

fn test() -> impl Sized {
    test()
}

fn main() {}