1
Fork 0
rust/tests/ui/feature-gates/feature-gate-custom_test_frameworks.rs

7 lines
174 B
Rust
Raw Normal View History

#![test_runner(main)] //~ ERROR custom test frameworks are an unstable feature
2018-07-20 18:04:02 -07:00
2019-07-06 01:58:52 +03:00
#[test_case] //~ ERROR custom test frameworks are an unstable feature
fn f() {}
2018-07-20 18:04:02 -07:00
fn main() {}