rust/tests/ui/parser/issues/issue-1802-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
129 B
Rust
Raw Normal View History

fn log(a: i32, b: i32) {}
2012-02-10 17:43:16 -06:00
fn main() {
let error = 42;
log(error, 0b);
//~^ ERROR no valid digits found for number
}