about summary refs log tree commit diff
path: root/src/test/compile-fail/rec-extend.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/rec-extend.rs')
-rw-r--r--src/test/compile-fail/rec-extend.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/rec-extend.rs b/src/test/compile-fail/rec-extend.rs
index a223aa00d87..06593df79df 100644
--- a/src/test/compile-fail/rec-extend.rs
+++ b/src/test/compile-fail/rec-extend.rs
@@ -4,5 +4,5 @@ fn main() {
 
     let a = {foo: 0i};
 
-    let b = {foo: true with a};
+    let b = {foo: true,.. a};
 }