Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
19
third-party/vendor/indexmap/tests/macros_full_path.rs
vendored
Normal file
19
third-party/vendor/indexmap/tests/macros_full_path.rs
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#[test]
|
||||
fn test_create_map() {
|
||||
let _m = indexmap::indexmap! {
|
||||
1 => 2,
|
||||
7 => 1,
|
||||
2 => 2,
|
||||
3 => 3,
|
||||
};
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_create_set() {
|
||||
let _s = indexmap::indexset! {
|
||||
1,
|
||||
7,
|
||||
2,
|
||||
3,
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue