]> git.lizzy.rs Git - rust.git/blob - tests/incremental/rustc-rust-log.rs
Rollup merge of #107524 - cjgillot:both-storage, r=RalfJung
[rust.git] / tests / incremental / rustc-rust-log.rs
1 // revisions: rpass1 rpass2
2 // This test is just checking that we won't ICE if logging is turned
3 // on; don't bother trying to compare that (copious) output.
4 //
5 // dont-check-compiler-stdout
6 // dont-check-compiler-stderr
7 // aux-build: rustc-rust-log-aux.rs
8 // rustc-env:RUSTC_LOG=debug
9
10 #[cfg(rpass1)]
11 fn main() {}
12
13 #[cfg(rpass2)]
14 fn main() {
15     println!();
16 }