]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-custom_test_frameworks.rs
Rollup merge of #94263 - anko:patch-1, r=GuillaumeGomez
[rust.git] / src / test / ui / feature-gates / feature-gate-custom_test_frameworks.rs
1 #![test_runner(main)] //~ ERROR custom test frameworks are an unstable feature
2
3 #[test_case] //~ ERROR custom test frameworks are an unstable feature
4 fn f() {}
5
6 fn main() {}