Files
rust/tests/ui/diagnostic-width/command-line-error-format-human.rs

9 lines
172 B
Rust
Raw Normal View History

2025-06-03 23:35:08 +05:00
//! This test checks the output format without the intermediate json representation
//@ compile-flags: --error-format=human
2017-11-20 13:13:27 +01:00
pub fn main() {
let x = 42;
x = 43;
}