11 lines
255 B
Rust
11 lines
255 B
Rust
#[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");
|
|
}
|