rust/src/test/ui/nll/constant.rs
2020-01-23 00:00:00 +00:00

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");
}