mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
10 lines
229 B
Rust
10 lines
229 B
Rust
#[allow(unused_attributes)]
|
|
#[rustversion::attr(not(nightly), ignore)]
|
|
#[cfg_attr(skip_ui_tests, ignore)]
|
|
#[cfg_attr(miri, ignore)]
|
|
#[test]
|
|
fn ui() {
|
|
let t = trybuild::TestCases::new();
|
|
t.compile_fail("tests/ui/*.rs");
|
|
}
|