Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lexer
/
lex-bad-str-literal-as-char-4.rs
blob: f0c7ad8f82b7e30582416c263816fccb88b25bdc [
file
] [
log
] [
blame
] [
edit
]
//@edition:2021
macro_rules
!
foo
{
()
=>
{
println
!(
'hello world'
);
//~^ ERROR unterminated character literal
//~| ERROR prefix `world` is unknown
}
}
fn
main
()
{}