summary refs log tree commit diff
path: root/tests/ui/resolve/parse-error-resolve.rs
blob: 1e0772648afec800bd72277be60a2ba423377215 (plain)
1
2
3
4
5
6
7
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
}