rust/tests/ui/modules/issue-107649.rs

107 lines
1.0 KiB
Rust

//@ compile-flags: -Z ui-testing=no
#[path = "auxiliary/dummy_lib.rs"]
mod lib;
/// The function needs to be long enough to
/// ensure `max_line_num_len` to be large enough
/// for no-ui-testing
fn main() {
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
();
dbg!(lib::Dummy); //~ Error: `Dummy` doesn't implement `Debug`
}