2024-02-22 06:10:29 -06:00
|
|
|
//@ revisions: rpass1 rpass2
|
2021-10-18 16:00:29 -05:00
|
|
|
// This test is just checking that we won't ICE if logging is turned
|
|
|
|
// on; don't bother trying to compare that (copious) output.
|
|
|
|
//
|
2024-02-22 06:10:29 -06:00
|
|
|
//@ dont-check-compiler-stdout
|
|
|
|
//@ dont-check-compiler-stderr
|
|
|
|
//@ aux-build: rustc-rust-log-aux.rs
|
|
|
|
//@ rustc-env:RUSTC_LOG=debug
|
2021-10-18 16:00:29 -05:00
|
|
|
|
|
|
|
#[cfg(rpass1)]
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
#[cfg(rpass2)]
|
|
|
|
fn main() {
|
|
|
|
println!();
|
|
|
|
}
|