Sign in
rust
/
rust
/
8a7e1d75b2e2f4a2e89420130bca8d8d97f9074e
/
.
/
tests
/
ui
/
parser
/
unicode-string-literal-syntax-error-64792.rs
blob: 6497509a1233cf6cb9e386bfcbb3af0fdf32464e [
file
]
// https://github.com/rust-lang/rust/issues/64792
struct
X
{}
const
Y
:
X
=
X
(
"รถ"
);
//~ ERROR expected function, tuple struct or tuple variant, found struct `X`
fn
main
()
{}