diff options
Diffstat (limited to 'tests/ui/consts/const-eval/parse_ints.rs')
| -rw-r--r-- | tests/ui/consts/const-eval/parse_ints.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/ui/consts/const-eval/parse_ints.rs b/tests/ui/consts/const-eval/parse_ints.rs index 409fae9e51d..6a7e157ea50 100644 --- a/tests/ui/consts/const-eval/parse_ints.rs +++ b/tests/ui/consts/const-eval/parse_ints.rs @@ -1,3 +1,5 @@ +//@ ignore-backends: gcc + const _OK: () = match i32::from_str_radix("-1234", 10) { Ok(x) => assert!(x == -1234), Err(_) => panic!(), |
