]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-custom_test_frameworks.rs
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[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() {}