rust/tests/ui/symbol-names/verbose.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
460 B
Rust
Raw Normal View History

2023-12-19 17:39:58 +00:00
// Regression test for issue #57596, where -Zverbose-internals 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
2023-12-19 17:39:58 +00:00
//@ compile-flags: -Zverbose-internals
pub fn error(msg: String) -> Box<dyn std::error::Error> {
msg.into()
}
fn main() {
error(String::new());
}