diff --git a/src/test/debuginfo/nil-enum.rs b/src/test/debuginfo/nil-enum.rs deleted file mode 100644 index 27e8e9d17e82c..0000000000000 --- a/src/test/debuginfo/nil-enum.rs +++ /dev/null @@ -1,24 +0,0 @@ -// LLDB can't handle zero-sized values. -// ignore-lldb - -// compile-flags:-g -// gdb-command:run - -// gdb-command:print *first -// gdbg-check:$1 = {} -// gdbr-check:$1 = - -#![allow(unused_variables)] -#![feature(omit_gdb_pretty_printer_section)] -#![feature(maybe_uninit)] -#![omit_gdb_pretty_printer_section] - -enum Void {} - -fn main() { - let first: *const Void = 1 as *const _; - - zzz(); // #break -} - -fn zzz() {}