]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-custom_test_frameworks.rs
Rollup merge of #103702 - WaffleLapkin:lift-sized-bounds-from-pointer-methods-where...
[rust.git] / tests / 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() {}