]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-custom_test_frameworks.rs
Rollup merge of #101308 - nerdypepper:feature/is-ascii-octdigit, r=joshtriplett
[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() {}