2023-12-19 17:39:58 +00:00
|
|
|
// Regression test for issue #57596, where -Zverbose-internals flag unintentionally
|
2022-02-16 00:00:00 +00:00
|
|
|
// affected produced symbols making it impossible to link between crates
|
|
|
|
// with a different value of the flag (for symbols involving generic
|
|
|
|
// arguments equal to defaults of their respective parameters).
|
|
|
|
//
|
|
|
|
//@ build-pass
|
2023-12-19 17:39:58 +00:00
|
|
|
//@ compile-flags: -Zverbose-internals
|
2022-02-16 00:00:00 +00:00
|
|
|
|
|
|
|
pub fn error(msg: String) -> Box<dyn std::error::Error> {
|
|
|
|
msg.into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
error(String::new());
|
|
|
|
}
|