about summary refs log tree commit diff
path: root/tests/debuginfo/self-in-generic-default-method.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/debuginfo/self-in-generic-default-method.rs')
-rw-r--r--tests/debuginfo/self-in-generic-default-method.rs30
1 files changed, 15 insertions, 15 deletions
diff --git a/tests/debuginfo/self-in-generic-default-method.rs b/tests/debuginfo/self-in-generic-default-method.rs
index 92be253e18a..a21280620b5 100644
--- a/tests/debuginfo/self-in-generic-default-method.rs
+++ b/tests/debuginfo/self-in-generic-default-method.rs
@@ -63,61 +63,61 @@
 
 // STACK BY REF
 // lldb-command:print *self
-// lldbg-check:[...]$0 = { x = 987 }
+// lldbg-check:[...] { x = 987 }
 // lldbr-check:(self_in_generic_default_method::Struct) *self = Struct { x: 987 }
 // lldb-command:print arg1
-// lldbg-check:[...]$1 = -1
+// lldbg-check:[...] -1
 // lldbr-check:(isize) arg1 = -1
 // lldb-command:print arg2
-// lldbg-check:[...]$2 = 2
+// lldbg-check:[...] 2
 // lldbr-check:(u16) arg2 = 2
 // lldb-command:continue
 
 // STACK BY VAL
 // lldb-command:print self
-// lldbg-check:[...]$3 = { x = 987 }
+// lldbg-check:[...] { x = 987 }
 // lldbr-check:(self_in_generic_default_method::Struct) self = Struct { x: 987 }
 // lldb-command:print arg1
-// lldbg-check:[...]$4 = -3
+// lldbg-check:[...] -3
 // lldbr-check:(isize) arg1 = -3
 // lldb-command:print arg2
-// lldbg-check:[...]$5 = -4
+// lldbg-check:[...] -4
 // lldbr-check:(i16) arg2 = -4
 // lldb-command:continue
 
 // OWNED BY REF
 // lldb-command:print *self
-// lldbg-check:[...]$6 = { x = 879 }
+// lldbg-check:[...] { x = 879 }
 // lldbr-check:(self_in_generic_default_method::Struct) *self = Struct { x: 879 }
 // lldb-command:print arg1
-// lldbg-check:[...]$7 = -5
+// lldbg-check:[...] -5
 // lldbr-check:(isize) arg1 = -5
 // lldb-command:print arg2
-// lldbg-check:[...]$8 = -6
+// lldbg-check:[...] -6
 // lldbr-check:(i32) arg2 = -6
 // lldb-command:continue
 
 // OWNED BY VAL
 // lldb-command:print self
-// lldbg-check:[...]$9 = { x = 879 }
+// lldbg-check:[...] { x = 879 }
 // lldbr-check:(self_in_generic_default_method::Struct) self = Struct { x: 879 }
 // lldb-command:print arg1
-// lldbg-check:[...]$10 = -7
+// lldbg-check:[...] -7
 // lldbr-check:(isize) arg1 = -7
 // lldb-command:print arg2
-// lldbg-check:[...]$11 = -8
+// lldbg-check:[...] -8
 // lldbr-check:(i64) arg2 = -8
 // lldb-command:continue
 
 // OWNED MOVED
 // lldb-command:print *self
-// lldbg-check:[...]$12 = { x = 879 }
+// lldbg-check:[...] { x = 879 }
 // lldbr-check:(self_in_generic_default_method::Struct) *self = Struct { x: 879 }
 // lldb-command:print arg1
-// lldbg-check:[...]$13 = -9
+// lldbg-check:[...] -9
 // lldbr-check:(isize) arg1 = -9
 // lldb-command:print arg2
-// lldbg-check:[...]$14 = -10.5
+// lldbg-check:[...] -10.5
 // lldbr-check:(f32) arg2 = -10.5
 // lldb-command:continue