Skip to content

Commit 524f92d

Browse files
committed
don't use a real issue/pr #
1 parent 9de454e commit 524f92d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/test/compile-fail/auxiliary/unstable-macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
#![feature(staged_api)]
1212
#![stable(feature = "unit_test", since = "0.0.0")]
1313

14-
#[unstable(feature = "unstable_macros", issue = "42069")]
14+
#[unstable(feature = "unstable_macros", issue = "0")]
1515
#[macro_export]
1616
macro_rules! unstable_macro{ () => () }

src/test/compile-fail/macro-stability.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#![feature(staged_api)]
1414
#[macro_use] extern crate unstable_macros;
1515

16-
#[unstable(feature = "local_unstable", issue = "42069")]
16+
#[unstable(feature = "local_unstable", issue = "0")]
1717
macro_rules! local_unstable { () => () }
1818

1919
fn main() {

src/test/run-pass/auxiliary/unstable-macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
#![feature(staged_api)]
1212
#![stable(feature = "unit_test", since = "0.0.0")]
1313

14-
#[unstable(feature = "unstable_macros", issue = "42069")]
14+
#[unstable(feature = "unstable_macros", issue = "0")]
1515
#[macro_export]
1616
macro_rules! unstable_macro{ () => () }

src/test/run-pass/macro-stability.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#[macro_use] extern crate unstable_macros;
1616

17-
#[unstable(feature = "local_unstable", issue = "42069")]
17+
#[unstable(feature = "local_unstable", issue = "0")]
1818
macro_rules! local_unstable { () => () }
1919

2020
fn main() {

0 commit comments

Comments
 (0)