about summary refs log tree commit diff
path: root/src/test/compile-fail/issue-3779.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/issue-3779.rs')
-rw-r--r--src/test/compile-fail/issue-3779.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/compile-fail/issue-3779.rs b/src/test/compile-fail/issue-3779.rs
index 79360597f72..19a7ed05bf4 100644
--- a/src/test/compile-fail/issue-3779.rs
+++ b/src/test/compile-fail/issue-3779.rs
@@ -8,7 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-struct S { //~ ERROR illegal recursive struct type; wrap the inner value in a box to make it representable
+struct S {
+    //~^ ERROR illegal recursive struct type; wrap the inner value in a box to make it representable
     element: Option<S>
 }