summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-custom_test_frameworks.rs
blob: 83bb153ba08a15538f9037f79d4c2a918c1af194 (plain)
1
2
3
4
5
6
#![test_runner(main)] //~ ERROR custom test frameworks are an unstable feature

#[test_case] //~ ERROR custom test frameworks are an unstable feature
fn f() {}

fn main() {}