Skip to content

Commit bd38aa1

Browse files
committed
Auto merge of #84638 - mark-i-m:unignore-tests, r=Mark-Simulacrum
Unignore a couple of tests
2 parents 7e717e9 + 6697b0d commit bd38aa1

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/test/ui/or-patterns/macro-pat.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
// run-pass
22
// edition:2021
3-
// ignore-test
4-
// FIXME(mark-i-m): enable this test again when 2021 machinery is available
53

64
use Foo::*;
75

6+
#[allow(dead_code)]
87
#[derive(Eq, PartialEq, Debug)]
98
enum Foo {
109
A(u64),

src/test/ui/or-patterns/or-patterns-syntactic-pass-2021.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
// Tests that :pat in macros in edition 2021 allows top-level or-patterns.
22

33
// run-pass
4-
// ignore-test
54
// edition:2021
6-
// FIXME(mark-i-m): unignore when 2021 machinery is in place.
75

86
macro_rules! accept_pat {
97
($p:pat) => {};

0 commit comments

Comments
 (0)