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-21 01:04:02 +00:00
2019-07-05 22:58:52 +00:00
#[test_case] //~ ERROR custom test frameworks are an unstable feature
fn f() {}
2018-07-21 01:04:02 +00:00
fn main() {}