blob: cb15ec7640363bba0109f1f1dc1cae7e003d56b9 [file] [log] [blame]
mod parse_error;
use parse_error::Canonical; // ok, `parse_error.rs` had parse errors
fn main() {
let _ = "" + 1; //~ ERROR E0369
parse_error::Canonical.foo(); // ok, `parse_error.rs` had parse errors
}
//~? ERROR expected one of `+`, `,`, `::`, `=`, or `>`, found `From`