Skip to content

Commit

Permalink
Fix pretty-std test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sp00ph committed Nov 27, 2022
1 parent cd68bd9 commit b1c3c63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/debuginfo/pretty-std.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
// cdb-command: dx vecdeque
// cdb-check:vecdeque : { len=0x2 } [Type: alloc::collections::vec_deque::VecDeque<i32,alloc::alloc::Global>]
// cdb-check: [<Raw View>] [Type: alloc::collections::vec_deque::VecDeque<i32,alloc::alloc::Global>]
// cdb-check: [len] : 0x2
// cdb-check: [len] : 0x2 [Type: unsigned [...]]
// cdb-check: [capacity] : 0x8 [Type: unsigned [...]]
// cdb-check: [0x0] : 90 [Type: int]
// cdb-check: [0x1] : 20 [Type: int]
Expand Down Expand Up @@ -175,7 +175,7 @@ fn main() {
linkedlist.push_front(128);

// VecDeque
let mut vecdeque = VecDeque::new();
let mut vecdeque = VecDeque::with_capacity(8);
vecdeque.push_back(20);
vecdeque.push_front(90);

Expand Down

0 comments on commit b1c3c63

Please sign in to comment.