]> git.proxmox.com Git - rustc.git/blame - src/test/ui/occurs-check.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / occurs-check.stderr
CommitLineData
b7449926 1error[E0308]: mismatched types
0731742a 2 --> $DIR/occurs-check.rs:5:9
b7449926 3 |
c295e0f8 4LL | f = Box::new(f);
5099ac24
FG
5 | ^^^^^^^^^^^ cyclic type of infinite size
6 |
7help: consider unboxing the value
8 |
9LL | f = *Box::new(f);
10 | +
b7449926
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0308`.