summaryrefslogtreecommitdiffstats
path: root/tests/ui/occurs-check.stderr
blob: fdbbdc3abb377b68ffc65520a8a6324dc6d9a8cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0308]: mismatched types
  --> $DIR/occurs-check.rs:5:9
   |
LL |     f = Box::new(f);
   |         ^^^^^^^^^^^ cyclic type of infinite size
   |
help: consider unboxing the value
   |
LL |     f = *Box::new(f);
   |         +

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.