2015-03-31 00:27:13 +11:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2016-03-26 01:36:03 +01:00
|
|
|
// compile-flags: -Z parse-only -Z continue-parse-after-error
|
|
|
|
|
2015-03-31 00:27:13 +11:00
|
|
|
fn main() {
|
|
|
|
0b121; //~ ERROR invalid digit for a base 2 literal
|
|
|
|
0b10_10301; //~ ERROR invalid digit for a base 2 literal
|
|
|
|
0b30; //~ ERROR invalid digit for a base 2 literal
|
|
|
|
0b41; //~ ERROR invalid digit for a base 2 literal
|
|
|
|
0b5; //~ ERROR invalid digit for a base 2 literal
|
|
|
|
0b6; //~ ERROR invalid digit for a base 2 literal
|
|
|
|
0b7; //~ ERROR invalid digit for a base 2 literal
|
|
|
|
0b8; //~ ERROR invalid digit for a base 2 literal
|
|
|
|
0b9; //~ ERROR invalid digit for a base 2 literal
|
|
|
|
}
|