blob: cd3ad2ec35ceef8c1784272379f9624ad7c42194 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#[rustversion::nightly]
#[test]
fn ui() {
let t = trybuild::TestCases::new();
t.compile_fail("tests/compile-fail/*.rs");
t.pass("tests/compile-pass/*.rs");
#[cfg(feature = "serde")]
t.compile_fail("tests/compile-fail-serde/*.rs");
}
|