// Copyright 2016 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // compile-flags:-g // === GDB TESTS =================================================================================== // gdb-command:run // gdb-command:print *a // gdbg-check:$1 = {value = [...] "abc"} // gdbr-check:$1 = unsized::Foo<[u8]> {value: [...]} // gdb-command:print *b // gdbg-check:$2 = {value = {value = [...] "abc"}} // gdbr-check:$2 = unsized::Foo> {value: unsized::Foo<[u8]> {value: [...]}} #![feature(omit_gdb_pretty_printer_section)] #![omit_gdb_pretty_printer_section] struct Foo { value: T } fn main() { let foo: Foo> = Foo { value: Foo { value: *b"abc\0" } }; let a: &Foo<[u8]> = &foo.value; let b: &Foo> = &foo; zzz(); // #break } fn zzz() { () }