rust/tests/ui/feature-gates/feature-gate-custom_test_frameworks.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
174 B
Rust
Raw Normal View History

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