mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 11:17:26 +03:00
8 lines
212 B
Rust
8 lines
212 B
Rust
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
|
|
}
|