1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
// CDB doesn't like how libstd.natvis casts to tuples before this version.
// https://github.com/rust-lang/rust/issues/76352#issuecomment-687640746
//@ min-cdb-version: 10.0.18362.1
// cdb-only
//@ compile-flags:-g
// === CDB TESTS ==================================================================================
// cdb-command: g
// cdb-command: dx hash_set,d
// cdb-check:hash_set,d [...] : { len=15 } [Type: [...]::HashSet<u64,[...]>]
// cdb-check: [len] : 15 [Type: [...]]
// cdb-check: [capacity] : [...]
// cdb-check: [[...]] [...] : 0 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 1 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 2 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 3 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 4 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 5 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 6 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 7 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 8 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 9 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 10 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 11 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 12 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 13 [Type: u64]
// cdb-command: dx hash_set,d
// cdb-check: [[...]] [...] : 14 [Type: u64]
// cdb-command: dx hash_map,d
// cdb-check:hash_map,d [...] : { len=15 } [Type: [...]::HashMap<u64,u64,[...]>]
// cdb-check: [len] : 15 [Type: [...]]
// cdb-check: [capacity] : [...]
// cdb-check: ["0x0"] : 0 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0x1"] : 1 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0x2"] : 2 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0x3"] : 3 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0x4"] : 4 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0x5"] : 5 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0x6"] : 6 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0x7"] : 7 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0x8"] : 8 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0x9"] : 9 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0xa"] : 10 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0xb"] : 11 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0xc"] : 12 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0xd"] : 13 [Type: unsigned __int64]
// cdb-command: dx hash_map,d
// cdb-check: ["0xe"] : 14 [Type: unsigned __int64]
// cdb-command: dx x
#![allow(unused_variables)]
use std::collections::HashSet;
use std::collections::HashMap;
fn main() {
// HashSet
let mut hash_set = HashSet::new();
for i in 0..15 {
hash_set.insert(i as u64);
}
// HashMap
let mut hash_map = HashMap::new();
for i in 0..15 {
hash_map.insert(i as u64, i as u64);
}
let x = &(123u64, 456u64);
let string = "awefawefawe".to_string();
zzz(); // #break
}
fn zzz() { () }
|