mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
438 B
Rust
16 lines
438 B
Rust
// Regression test for issue #57596, where -Zverbose flag unintentionally
|
|
// 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
|
|
// compile-flags: -Zverbose
|
|
|
|
pub fn error(msg: String) -> Box<dyn std::error::Error> {
|
|
msg.into()
|
|
}
|
|
|
|
fn main() {
|
|
error(String::new());
|
|
}
|