Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libsyntax/feature_gate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ const KNOWN_FEATURES: &'static [(&'static str, &'static str, Option<u32>, Status
("associated_type_defaults", "1.2.0", Some(29661), Active),

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

// allow `repr(simd)`, and importing the various simd intrinsics
("repr_simd", "1.4.0", Some(27731), Active),
Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/type-macros-fail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ macro_rules! Id {

struct Foo<T> {
x: Id!(T)
//~^ ERROR: type macros are experimental (see issue #27336)
//~^ ERROR: type macros are experimental (see issue #27245)
}

fn main() {
Expand Down