]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/syntax-extension-hexfloat-bad-lits.rs
Convert most code to new inner attribute syntax.
[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 // ignore-cross-compile #12102
14
15 #![feature(phase)]
16
17 #[phase(syntax)]
18 extern crate hexfloat;
19
20 fn main() {
21     hexfloat!("foo");
22     //~^ ERROR invalid hex float literal in hexfloat!: Expected '0'
23     hexfloat!("0");
24     //~^ERROR invalid hex float literal in hexfloat!: Expected 'x'
25     hexfloat!("0x");
26     //~^ERROR invalid hex float literal in hexfloat!: Expected '.'
27     hexfloat!("0x.");
28     //~^ERROR invalid hex float literal in hexfloat!: Expected digits before or after decimal point
29     hexfloat!("0x0.0");
30     //~^ERROR invalid hex float literal in hexfloat!: Expected 'p'
31     hexfloat!("0x0.0p");
32     //~^ERROR invalid hex float literal in hexfloat!: Expected exponent digits
33     hexfloat!("0x0.0p0f");
34     //~^ERROR invalid hex float literal in hexfloat!: Expected end of string
35 }