]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-17431-4.stderr
Rollup merge of #91804 - woppopo:const_clone, r=oli-obk
[rust.git] / src / test / ui / issues / issue-17431-4.stderr
index aa709e1ad518350eb0ac815ae67f8dba787c8e81..f5aeeec7337115dda48d2dc678b9ec36d523febe 100644 (file)
@@ -9,7 +9,7 @@ LL | struct Foo<T> { foo: Option<Option<Foo<T>>>, marker: marker::PhantomData<T>
 help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to make `Foo` representable
    |
 LL | struct Foo<T> { foo: Box<Option<Option<Foo<T>>>>, marker: marker::PhantomData<T> }
-   |                      ^^^^                      ^
+   |                      ++++                      +
 
 error: aborting due to previous error