mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-30 12:36:38 +00:00
8 lines
162 B
Rust
8 lines
162 B
Rust
mod parse_error;
|
|
use parse_error::Canonical; //~ ERROR E0432
|
|
|
|
fn main() {
|
|
let _ = "" + 1; //~ ERROR E0369
|
|
parse_error::Canonical.foo(); //~ ERROR E0425
|
|
}
|