mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +00:00
21 lines
599 B
Rust
21 lines
599 B
Rust
//! Checks that `[rev] normalize-*` directives affect the specified revision,
|
|
//! and don't affect other revisions.
|
|
//!
|
|
//! This currently relies on the fact that `normalize-*` directives are
|
|
//! applied to run output, not just compiler output. If that ever changes,
|
|
//! this test might need to be adjusted.
|
|
|
|
//@ edition: 2021
|
|
//@ revisions: a b
|
|
//@ run-pass
|
|
//@ check-run-results
|
|
|
|
//@ normalize-stderr: "output" -> "emitted"
|
|
//@[a] normalize-stderr: "first" -> "1st"
|
|
//@[b] normalize-stderr: "second" -> "2nd"
|
|
|
|
fn main() {
|
|
eprintln!("first output line");
|
|
eprintln!("second output line");
|
|
}
|