summary refs log tree commit diff
path: root/src/test/ui/parser/macros-no-semicolon.rs
blob: fd79fa8df7a68662366042af17216e78bb1c4157 (plain)
1
2
3
4
5
fn main() {
    assert_eq!(1, 2)
    assert_eq!(3, 4) //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `assert_eq`
    println!("hello");
}