summaryrefslogtreecommitdiffstats
path: root/tests/ui/test-attrs/tests-listing-format-json-without-unstableopts.rs
blob: 5247f1f8f1746bfb14f49de180f1f7e345cb7aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// no-prefer-dynamic
// compile-flags: --test
// run-flags: --list --format json
// run-fail
// check-run-results

// Checks that --format json does not work without -Zunstable-options.

#![cfg(test)]
#[test]
fn m_test() {}

#[test]
#[ignore = "not yet implemented"]
fn z_test() {}

#[test]
fn a_test() {}