blob: 039b6aaaf0a70e09c60dc7667025e0864183aa98 [file] [log] [blame]
// 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");
}