Skip to content

Commit

Permalink
postfix_match
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskrgr committed Mar 24, 2024
1 parent 4579a73 commit 15bc25f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ http://github.com/langston-barrett/tree-splicer code mutator which icemaker can

Trophy case (1030+):

https://github.com/rust-lang/miri/issues/3400
https://github.com/rust-lang/rust/issues/122914
https://github.com/rust-lang/rust/issues/122909
https://github.com/rust-lang/rust/issues/122908
Expand Down
8 changes: 8 additions & 0 deletions src/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ static DEFAULT_RUSTFLAGS: &[&[&str]] = &[
"-Zcrate-attr=feature(const_refs_to_static)",
"-Zcrate-attr=feature(unnamed_fields)",
"-Zcrate-attr=feature(deref_patterns)",
"-Zcrate-attr=feature(postfix_match)",
// </features>
"-Zprint-vtable-sizes",
"-Zunstable-options",
Expand Down Expand Up @@ -425,6 +426,7 @@ static DEFAULT_RUSTFLAGS: &[&[&str]] = &[
"-Zcrate-attr=feature(const_refs_to_static)",
"-Zcrate-attr=feature(unnamed_fields)",
"-Zcrate-attr=feature(deref_patterns)",
"-Zcrate-attr=feature(postfix_match)",
// <features>
"-Zprint-vtable-sizes",
"-Zunstable-options",
Expand Down Expand Up @@ -616,6 +618,7 @@ static DEFAULT_RUSTFLAGS: &[&[&str]] = &[
"-Zcrate-attr=feature(const_refs_to_static)",
"-Zcrate-attr=feature(unnamed_fields)",
"-Zcrate-attr=feature(deref_patterns)",
"-Zcrate-attr=feature(postfix_match)",
// </features>
"-Zprint-vtable-sizes",
"-Zunstable-options",
Expand Down Expand Up @@ -821,6 +824,7 @@ static DEFAULT_RUSTFLAGS: &[&[&str]] = &[
"-Zcrate-attr=feature(const_refs_to_static)",
"-Zcrate-attr=feature(unnamed_fields)",
"-Zcrate-attr=feature(deref_patterns)",
"-Zcrate-attr=feature(postfix_match)",
"-Clink-dead-code=true",
],
/* rustc codegen gcc
Expand Down Expand Up @@ -1056,6 +1060,7 @@ static EXPENSIVE_RUSTFLAGS: &[&[&str]] = &[
"-Zcrate-attr=feature(yeet_expr)",
"-Zcrate-attr=feature(const_refs_to_static)",
"-Zcrate-attr=feature(unnamed_fields)",
"-Zcrate-attr=feature(postfix_match)",
// </features>
"-Zprint-vtable-sizes",
"-Zunstable-options",
Expand Down Expand Up @@ -1246,6 +1251,7 @@ static EXPENSIVE_RUSTFLAGS: &[&[&str]] = &[
"-Zcrate-attr=feature(yeet_expr)",
"-Zcrate-attr=feature(const_refs_to_static)",
"-Zcrate-attr=feature(unnamed_fields)",
"-Zcrate-attr=feature(postfix_match)",
// <features>
"-Zprint-vtable-sizes",
"-Zunstable-options",
Expand Down Expand Up @@ -1437,6 +1443,7 @@ static EXPENSIVE_RUSTFLAGS: &[&[&str]] = &[
"-Zcrate-attr=feature(yeet_expr)",
"-Zcrate-attr=feature(const_refs_to_static)",
"-Zcrate-attr=feature(unnamed_fields)",
"-Zcrate-attr=feature(postfix_match)",
// </features>
"-Zprint-vtable-sizes",
"-Zunstable-options",
Expand Down Expand Up @@ -1641,6 +1648,7 @@ static EXPENSIVE_RUSTFLAGS: &[&[&str]] = &[
"-Zcrate-attr=feature(yeet_expr)",
"-Zcrate-attr=feature(const_refs_to_static)",
"-Zcrate-attr=feature(unnamed_fields)",
"-Zcrate-attr=feature(postfix_match)",
"-Clink-dead-code=true",
"-Zverify-llvm-ir=yes",
],
Expand Down

0 comments on commit 15bc25f

Please sign in to comment.