blob: 2fcbfe8c068395110334e76ba74e95c23b5857c0 [file] [log] [blame]
// Test that we do some basic error correction in the tokeniser (and don't spew
// too many bogus errors).
fn foo() -> usize {
3
}
fn bar() {
foo() //~ ERROR mismatched types
}
fn main() {
bar()
}