blob: 648bd144632634a0f76196e1769c69c60c543cca (
plain)
1
2
3
4
5
6
7
8
|
// Checks that `-Z instrument-xray` does not allow duplicates.
//
//@ needs-xray
//@ compile-flags: -Z instrument-xray=ignore-loops,ignore-loops
fn main() {}
//~? ERROR incorrect value `ignore-loops,ignore-loops` for unstable option `instrument-xray`
|