File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -909,10 +909,8 @@ impl LangString {
909
909
let mut seen_rust_tags = false ;
910
910
let mut seen_other_tags = false ;
911
911
let mut data = LangString :: all_false ( ) ;
912
- let mut allow_compile_fail = false ;
913
912
let mut allow_error_code_check = false ;
914
913
if UnstableFeatures :: from_environment ( ) . is_nightly_build ( ) {
915
- allow_compile_fail = true ;
916
914
allow_error_code_check = true ;
917
915
}
918
916
@@ -936,7 +934,7 @@ impl LangString {
936
934
data. test_harness = true ;
937
935
seen_rust_tags = !seen_other_tags || seen_rust_tags;
938
936
}
939
- "compile_fail" if allow_compile_fail => {
937
+ "compile_fail" => {
940
938
data. compile_fail = true ;
941
939
seen_rust_tags = !seen_other_tags || seen_rust_tags;
942
940
data. no_run = true ;
You can’t perform that action at this time.
0 commit comments