about summary refs log tree commit diff
path: root/src/test/debuginfo/method-on-generic-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/debuginfo/method-on-generic-struct.rs')
-rw-r--r--src/test/debuginfo/method-on-generic-struct.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/debuginfo/method-on-generic-struct.rs b/src/test/debuginfo/method-on-generic-struct.rs
index 975668baa12..f76f8c8cad2 100644
--- a/src/test/debuginfo/method-on-generic-struct.rs
+++ b/src/test/debuginfo/method-on-generic-struct.rs
@@ -18,7 +18,7 @@
 
 // STACK BY REF
 // gdb-command:print *self
-// gdb-check:$1 = {x = {8888, -8888}}
+// gdb-check:$1 = {x = {__0 = 8888, __1 = -8888}}
 // gdb-command:print arg1
 // gdb-check:$2 = -1
 // gdb-command:print arg2
@@ -27,7 +27,7 @@
 
 // STACK BY VAL
 // gdb-command:print self
-// gdb-check:$4 = {x = {8888, -8888}}
+// gdb-check:$4 = {x = {__0 = 8888, __1 = -8888}}
 // gdb-command:print arg1
 // gdb-check:$5 = -3
 // gdb-command:print arg2