12 lines
212 B
Rust
12 lines
212 B
Rust
// Test that MIR borrowck and NLL analysis can handle constants of
|
|
// arbitrary types without ICEs.
|
|
|
|
// compile-flags:-Zborrowck=mir
|
|
// check-pass
|
|
|
|
const HI: &str = "hi";
|
|
|
|
fn main() {
|
|
assert_eq!(HI, "hi");
|
|
}
|