Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Test that MIR borrowck and NLL analysis can handle constants of
// arbitrary types without ICEs.
// check-pass
const HI: &str = "hi";
fn main() {
assert_eq!(HI, "hi");
}