Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
nll
/
constant.rs
blob: 9791ec7a92b94d085ed405a062260e2c473ed224 [
file
]
// 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"
);
}