about summary refs log tree commit diff
path: root/tests/ui/nll/constant.rs
blob: 9791ec7a92b94d085ed405a062260e2c473ed224 (plain)
1
2
3
4
5
6
7
8
9
10
// 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");
}