Auto merge of #84638 - mark-i-m:unignore-tests, r=Mark-Simulacrum

Unignore a couple of tests
This commit is contained in:
bors 2021-05-02 02:04:29 +00:00
commit bd38aa104a
2 changed files with 1 additions and 4 deletions

View File

@ -1,10 +1,9 @@
// run-pass
// edition:2021
// ignore-test
// FIXME(mark-i-m): enable this test again when 2021 machinery is available
use Foo::*;
#[allow(dead_code)]
#[derive(Eq, PartialEq, Debug)]
enum Foo {
A(u64),

View File

@ -1,9 +1,7 @@
// Tests that :pat in macros in edition 2021 allows top-level or-patterns.
// run-pass
// ignore-test
// edition:2021
// FIXME(mark-i-m): unignore when 2021 machinery is in place.
macro_rules! accept_pat {
($p:pat) => {};