about summary refs log tree commit diff
path: root/src/test/debuginfo/generic-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/debuginfo/generic-struct.rs')
-rw-r--r--src/test/debuginfo/generic-struct.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/debuginfo/generic-struct.rs b/src/test/debuginfo/generic-struct.rs
index 7d485a6f5d5..908968fd6b3 100644
--- a/src/test/debuginfo/generic-struct.rs
+++ b/src/test/debuginfo/generic-struct.rs
@@ -41,6 +41,9 @@
 // lldb-command:print float_int_float
 // lldb-check:[...]$3 = AGenericStruct<f64, generic-struct::AGenericStruct<int, f64>> { key: 6.5, value: AGenericStruct<int, f64> { key: 7, value: 8.5 } }
 
+
+#![omit_gdb_pretty_printer_section]
+
 struct AGenericStruct<TKey, TValue> {
     key: TKey,
     value: TValue