mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
8 lines
260 B
Rust
8 lines
260 B
Rust
// Checks that `-Z instrument-xray` does not allow duplicates.
|
|
//
|
|
//@ needs-xray
|
|
//@ compile-flags: -Z instrument-xray=ignore-loops,ignore-loops
|
|
//@ error-pattern: incorrect value `ignore-loops,ignore-loops` for unstable option `instrument-xray`
|
|
|
|
fn main() {}
|