]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-3008-2.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-3008-2.stderr
index d02fb45be496709aaad633b6e66ea31f6024bf4b..acc15f4b57c73cd51f44ff090cd7e27545d4e534 100644 (file)
@@ -1,12 +1,12 @@
-error[E0072]: recursive type `bar` has infinite size
-  --> $DIR/issue-3008-2.rs:12:1
+error[E0072]: recursive type `Bar` has infinite size
+  --> $DIR/issue-3008-2.rs:2:1
    |
-LL | struct bar { x: bar }
+LL | struct Bar { x: Bar }
    | ^^^^^^^^^^   ------ recursive without indirection
    | |
    | recursive type has infinite size
    |
-   = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `bar` representable
+   = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `Bar` representable
 
 error: aborting due to previous error