about summary refs log tree commit diff
path: root/tests/debuginfo/generic-struct.rs
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2024-08-18 16:59:58 -0400
committerBen Kimock <kimockb@gmail.com>2024-08-18 16:59:58 -0400
commit41d06f41158b9efaaaeed141bd9a8315527410ec (patch)
treea0d225432b2c6acdd4a41e3d6a2f42f638878679 /tests/debuginfo/generic-struct.rs
parentc5fdc90a733187564c3a5dc2567cdb232738b7f7 (diff)
downloadrust-41d06f41158b9efaaaeed141bd9a8315527410ec.tar.gz
rust-41d06f41158b9efaaaeed141bd9a8315527410ec.zip
Delete lldbr annotations
Diffstat (limited to 'tests/debuginfo/generic-struct.rs')
-rw-r--r--tests/debuginfo/generic-struct.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/debuginfo/generic-struct.rs b/tests/debuginfo/generic-struct.rs
index 2817f8edc15..49ec4ac1c17 100644
--- a/tests/debuginfo/generic-struct.rs
+++ b/tests/debuginfo/generic-struct.rs
@@ -19,17 +19,13 @@
 
 // lldb-command:v int_int
 // lldbg-check:[...] AGenericStruct<i32, i32> { key: 0, value: 1 }
-// lldbr-check:(generic_struct::AGenericStruct<i32, i32>) int_int = AGenericStruct<i32, i32> { key: 0, value: 1 }
 // lldb-command:v int_float
 // lldbg-check:[...] AGenericStruct<i32, f64> { key: 2, value: 3.5 }
-// lldbr-check:(generic_struct::AGenericStruct<i32, f64>) int_float = AGenericStruct<i32, f64> { key: 2, value: 3.5 }
 // lldb-command:v float_int
 // lldbg-check:[...] AGenericStruct<f64, i32> { key: 4.5, value: 5 }
-// lldbr-check:(generic_struct::AGenericStruct<f64, i32>) float_int = AGenericStruct<f64, i32> { key: 4.5, value: 5 }
 
 // lldb-command:v float_int_float
 // lldbg-check:[...] AGenericStruct<f64, generic_struct::AGenericStruct<i32, f64>> { key: 6.5, value: AGenericStruct<i32, f64> { key: 7, value: 8.5 } }
-// lldbr-check:(generic_struct::AGenericStruct<f64, generic_struct::AGenericStruct<i32, f64>>) float_int_float = AGenericStruct<f64, generic_struct::AGenericStruct<i32, f64>> { key: 6.5, value: AGenericStruct<i32, f64> { key: 7, value: 8.5 } }
 
 // === CDB TESTS ===================================================================================