]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/subspan.rs
437123ca4795e4d7e0caf67eef1272c8e1eda15d
[rust.git] / src / test / ui-fulldeps / subspan.rs
1 // Copyright 2018 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 // aux-build:subspan.rs
12 // ignore-stage1
13
14 extern crate subspan;
15
16 use subspan::subspan;
17
18 // This one emits no error.
19 subspan!("");
20
21 // Exactly one 'hi'.
22 subspan!("hi"); //~ ERROR found 'hi's
23
24 // Now two, back to back.
25 subspan!("hihi"); //~ ERROR found 'hi's
26
27 // Now three, back to back.
28 subspan!("hihihi"); //~ ERROR found 'hi's
29
30 // Now several, with spacing.
31 subspan!("why I hide? hi!"); //~ ERROR found 'hi's
32 subspan!("hey, hi, hidy, hidy, hi hi"); //~ ERROR found 'hi's
33 subspan!("this is a hi, and this is another hi"); //~ ERROR found 'hi's
34 subspan!("how are you this evening"); //~ ERROR found 'hi's
35 subspan!("this is highly eradic"); //~ ERROR found 'hi's
36
37 fn main() { }