summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-gui/src/scrape_examples/examples/check.rs
blob: b3f682fe4973cd2ce83decbfe9c2b60d4812cb15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
fn main() {
    for i in 0..9 {
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
    }
    scrape_examples::test();
    for i in 0..9 {
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
        println!("hello world!");
    }
    scrape_examples::test();
}