blob: 08eb56bc2040d82f9117cd73d9273e48ee4b8edb [file]
//! Regression test for <https://github.com/rust-lang/rust/issues/33525>.
//! Test rustc emits right error count.
//! (this used to return `aborting due to 2 previous errors`)
fn main() {
a; //~ ERROR cannot find value `a`
"".lorem; //~ ERROR no field
"".ipsum; //~ ERROR no field
}