Closed
Description
The following code produces a strange error:
#![feature(asm)]
fn main() {
unsafe { asm!() }
}
The error is:
error: expected expression, found `<eof>`
The error does not contain any file or line information, so it's pretty hard to find the offending line. The error also occurs on stable, where inline assembly isn't even allowed.