Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
macros-no-semicolon.rs
blob: 24d1ae9e6236851a48eaec549a098695e793f049 [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
assert_eq
!(
1
,
2
)
//~ ERROR: expected `;`
assert_eq
!(
3
,
4
)
//~ ERROR: expected `;`
println
!(
"hello"
);
}