about summary refs log tree commit diff
path: root/tests/debuginfo/trait-pointers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/debuginfo/trait-pointers.rs')
-rw-r--r--tests/debuginfo/trait-pointers.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/debuginfo/trait-pointers.rs b/tests/debuginfo/trait-pointers.rs
index 71da71b897a..5cdefe94e50 100644
--- a/tests/debuginfo/trait-pointers.rs
+++ b/tests/debuginfo/trait-pointers.rs
@@ -1,10 +1,9 @@
 //@ compile-flags:-g
+//@ disable-gdb-pretty-printers
 // gdb-command:run
 // lldb-command:run
 
 #![allow(unused_variables)]
-#![feature(omit_gdb_pretty_printer_section)]
-#![omit_gdb_pretty_printer_section]
 
 trait Trait {
     fn method(&self) -> isize { 0 }