summary refs log tree commit diff
path: root/tests/ui/diagnostic-width/flag-json.rs
blob: 00778872727b5925b63a33630a0303744258481e (plain)
1
2
3
4
5
6
7
8
9
//@ compile-flags: --diagnostic-width=20 --error-format=json
//@ error-pattern:expected `()`, found integer

// This test checks that `-Z output-width` effects the JSON error output by restricting it to an
// arbitrarily low value so that the effect is visible.

fn main() {
    let _: () = 42;
}