aboutsummaryrefslogtreecommitdiff
path: root/tests/compiletest.rs
blob: 06712d01b55492337b2a06c4da6ace7dc1fdcdd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg(not(miri))]
#![cfg(not(careful))]
#![warn(rust_2018_idioms, single_use_lifetimes)]

use std::env;

#[rustversion::attr(not(nightly), ignore)]
#[test]
fn ui() {
    if env::var_os("CI").is_none() {
        env::set_var("TRYBUILD", "overwrite");
    }

    let t = trybuild::TestCases::new();
    t.compile_fail("tests/ui/**/*.rs");
}