2024-02-16 20:02:50 +00:00
|
|
|
//@ 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
|
2023-11-02 17:40:40 +11:00
|
|
|
|
|
|
|
|
fn main() {}
|
2025-03-23 15:50:51 +03:00
|
|
|
|
|
|
|
|
//[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`
|