]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/subspan.rs
Rollup merge of #56242 - GuillaumeGomez:iterator-missing-link, r=Centril
[rust.git] / src / test / ui / proc-macro / 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
13 extern crate subspan;
14
15 use subspan::subspan;
16
17 // This one emits no error.
18 subspan!("");
19
20 // Exactly one 'hi'.
21 subspan!("hi"); //~ ERROR found 'hi's
22
23 // Now two, back to back.
24 subspan!("hihi"); //~ ERROR found 'hi's
25
26 // Now three, back to back.
27 subspan!("hihihi"); //~ ERROR found 'hi's
28
29 // Now several, with spacing.
30 subspan!("why I hide? hi!"); //~ ERROR found 'hi's
31 subspan!("hey, hi, hidy, hidy, hi hi"); //~ ERROR found 'hi's
32 subspan!("this is a hi, and this is another hi"); //~ ERROR found 'hi's
33 subspan!("how are you this evening"); //~ ERROR found 'hi's
34 subspan!("this is highly eradic"); //~ ERROR found 'hi's
35
36 fn main() { }