Skip to content

Commit e1080dc

Browse files
committed
Auto merge of #32516 - nodakai:fix-type-macro-feat-gate, r=alexcrichton
Type macro is tracked at #27245, not 27336
2 parents deee0f7 + 7b69ad9 commit e1080dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libsyntax/feature_gate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ const KNOWN_FEATURES: &'static [(&'static str, &'static str, Option<u32>, Status
199199
("associated_type_defaults", "1.2.0", Some(29661), Active),
200200

201201
// Allows macros to appear in the type position.
202-
("type_macros", "1.3.0", Some(27336), Active),
202+
("type_macros", "1.3.0", Some(27245), Active),
203203

204204
// allow `repr(simd)`, and importing the various simd intrinsics
205205
("repr_simd", "1.4.0", Some(27731), Active),

src/test/compile-fail/type-macros-fail.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ macro_rules! Id {
1414

1515
struct Foo<T> {
1616
x: Id!(T)
17-
//~^ ERROR: type macros are experimental (see issue #27336)
17+
//~^ ERROR: type macros are experimental (see issue #27245)
1818
}
1919

2020
fn main() {

0 commit comments

Comments
 (0)