mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
214 B
Rust
18 lines
214 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
// aux-build:issue-5521.rs
|
|
|
|
|
|
|
|
extern crate issue_5521 as foo;
|
|
|
|
fn bar(a: foo::map) {
|
|
if false {
|
|
panic!();
|
|
} else {
|
|
let _b = &(*a)[&2];
|
|
}
|
|
}
|
|
|
|
fn main() {}
|