]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unboxed-closures/unboxed-closure-no-cyclic-sig.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / unboxed-closures / unboxed-closure-no-cyclic-sig.stderr
1 error[E0644]: closure/generator type that references itself
2   --> $DIR/unboxed-closure-no-cyclic-sig.rs:8:7
3    |
4 LL |     g(|_| {  }); //~ ERROR closure/generator type that references itself
5    |       ^^^^^^^^ cyclic type of infinite size
6    |
7    = note: closures cannot capture themselves or take themselves as argument;
8            this error may be the result of a recent compiler bug-fix,
9            see https://github.com/rust-lang/rust/issues/46062 for more details
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0644`.