summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unboxed-closures/unboxed-closure-no-cyclic-sig.rs
blob: 9d0aa413207abb3f69d4a688d4c9dc365112124f (plain)
1
2
3
4
5
6
7
8
9
// Test that unboxed closures cannot capture their own type.
//
// Also regression test for issue #21410.

fn g<F>(_: F) where F: FnOnce(Option<F>) {}

fn main() {
    g(|_| {  }); //~ ERROR closure/generator type that references itself
}