]> git.proxmox.com Git - rustc.git/blame - src/test/ui/proc-macro/subspan.rs
New upstream version 1.32.0~beta.2+dfsg1
[rustc.git] / src / test / ui / proc-macro / subspan.rs
CommitLineData
a1dfa0c6
XL
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
13extern crate subspan;
14
15use subspan::subspan;
16
17// This one emits no error.
18subspan!("");
19
20// Exactly one 'hi'.
21subspan!("hi"); //~ ERROR found 'hi's
22
23// Now two, back to back.
24subspan!("hihi"); //~ ERROR found 'hi's
25
26// Now three, back to back.
27subspan!("hihihi"); //~ ERROR found 'hi's
28
29// Now several, with spacing.
30subspan!("why I hide? hi!"); //~ ERROR found 'hi's
31subspan!("hey, hi, hidy, hidy, hi hi"); //~ ERROR found 'hi's
32subspan!("this is a hi, and this is another hi"); //~ ERROR found 'hi's
33subspan!("how are you this evening"); //~ ERROR found 'hi's
34subspan!("this is highly eradic"); //~ ERROR found 'hi's
35
36fn main() { }