]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-17431-3.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-17431-3.stderr
1 error[E0072]: recursive type `Foo` has infinite size
2   --> $DIR/issue-17431-3.rs:3:1
3    |
4 LL | struct Foo { foo: Mutex<Option<Foo>> }
5    | ^^^^^^^^^^   ----------------------- recursive without indirection
6    | |
7    | recursive type has infinite size
8    |
9    = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `Foo` representable
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0072`.