diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2017-01-21 17:40:31 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2017-01-30 23:14:15 +0300 |
| commit | ffba0cea621c2609582b4e201b76b3b19860ec4f (patch) | |
| tree | 48c8591c66b1601160f311d4b882f8b27bfcbe28 /src/test/debuginfo | |
| parent | 55f9712d14126bce39357e6160a638ce7886e982 (diff) | |
| download | rust-ffba0cea621c2609582b4e201b76b3b19860ec4f.tar.gz rust-ffba0cea621c2609582b4e201b76b3b19860ec4f.zip | |
Merge ty::TyBox into ty::TyAdt
Diffstat (limited to 'src/test/debuginfo')
| -rw-r--r-- | src/test/debuginfo/type-names.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/test/debuginfo/type-names.rs b/src/test/debuginfo/type-names.rs index 438a78743bb..57d40cccf2d 100644 --- a/src/test/debuginfo/type-names.rs +++ b/src/test/debuginfo/type-names.rs @@ -70,12 +70,12 @@ // BOX // gdb-command:whatis box1 -// gdbg-check:type = struct (Box<f32>, i32) -// gdbr-check:type = (Box<f32>, i32) +// gdbg-check:type = struct (alloc::boxed::Box<f32>, i32) +// gdbr-check:type = (alloc::boxed::Box<f32>, i32) // gdb-command:whatis box2 -// gdbg-check:type = struct (Box<type_names::mod1::mod2::Enum3<f32>>, i32) -// gdbr-check:type = (Box<type_names::mod1::mod2::Enum3<f32>>, i32) +// gdbg-check:type = struct (alloc::boxed::Box<type_names::mod1::mod2::Enum3<f32>>, i32) +// gdbr-check:type = (alloc::boxed::Box<type_names::mod1::mod2::Enum3<f32>>, i32) // REFERENCES @@ -196,8 +196,8 @@ // gdbr-check:type = (unsafe fn(type_names::GenericStruct<u16, u8>) -> type_names::mod1::Struct2, usize) // gdb-command:whatis extern_stdcall_fn_with_return_value -// gdbg-check:type = struct (extern "stdcall" fn(Box<isize>) -> usize, usize) -// gdbr-check:type = (extern "stdcall" fn(Box<isize>) -> usize, usize) +// gdbg-check:type = struct (extern "stdcall" fn(alloc::boxed::Box<isize>) -> usize, usize) +// gdbr-check:type = (extern "stdcall" fn(alloc::boxed::Box<isize>) -> usize, usize) // gdb-command:whatis generic_function_int // gdbg-check:type = struct (fn(isize) -> isize, usize) |
