rust/tests/ui/feature-gates/feature-gate-custom_test_frameworks.rs
2023-01-11 09:32:08 +00:00

7 lines
174 B
Rust

#![test_runner(main)] //~ ERROR custom test frameworks are an unstable feature
#[test_case] //~ ERROR custom test frameworks are an unstable feature
fn f() {}
fn main() {}