mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-27 12:48:20 +00:00
11 lines
469 B
Rust
11 lines
469 B
Rust
//@ revisions: no-value blank bad
|
|
//@ [no-value] compile-flags: -Csymbol-mangling-version
|
|
//@ [blank] compile-flags: -Csymbol-mangling-version=
|
|
//@ [bad] compile-flags: -Csymbol-mangling-version=bad-value
|
|
|
|
fn main() {}
|
|
|
|
//[no-value]~? ERROR codegen option `symbol-mangling-version` requires one of
|
|
//[blank]~? ERROR incorrect value `` for codegen option `symbol-mangling-version`
|
|
//[bad]~? ERROR incorrect value `bad-value` for codegen option `symbol-mangling-version`
|