]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-17431-1.stderr
Rollup merge of #95530 - notriddle:notriddle/private-kw-prim, r=jsha
[rust.git] / src / test / ui / issues / issue-17431-1.stderr
index 4d739a3823b1073246f1f42a344383617ac3ccb5..db32eb952ba79796caa6b7fdac16eb13d004536b 100644 (file)
@@ -8,8 +8,8 @@ LL | struct Foo { foo: Option<Option<Foo>> }
    |
 help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to make `Foo` representable
    |
-LL | struct Foo { foo: Box<Option<Option<Foo>>> }
-   |                   ++++                   +
+LL | struct Foo { foo: Option<Box<Option<Foo>>> }
+   |                          ++++           +
 
 error: aborting due to previous error