]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/syntax-extension-hexfloat-bad-lits.rs
auto merge of #13704 : edwardw/rust/doc-hidden, r=alexcrichton
[rust.git] / src / test / compile-fail / syntax-extension-hexfloat-bad-lits.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-stage1
12 // ignore-pretty
13
14 #![feature(phase)]
15
16 #[phase(syntax)]
17 extern crate hexfloat;
18
19 fn main() {
20     hexfloat!("foo");
21     //~^ ERROR invalid hex float literal in hexfloat!: Expected '0'
22     hexfloat!("0");
23     //~^ERROR invalid hex float literal in hexfloat!: Expected 'x'
24     hexfloat!("0x");
25     //~^ERROR invalid hex float literal in hexfloat!: Expected '.'
26     hexfloat!("0x.");
27     //~^ERROR invalid hex float literal in hexfloat!: Expected digits before or after decimal point
28     hexfloat!("0x0.0");
29     //~^ERROR invalid hex float literal in hexfloat!: Expected 'p'
30     hexfloat!("0x0.0p");
31     //~^ERROR invalid hex float literal in hexfloat!: Expected exponent digits
32     hexfloat!("0x0.0p0f");
33     //~^ERROR invalid hex float literal in hexfloat!: Expected end of string
34 }