We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f8be02 commit 358aca1Copy full SHA for 358aca1
compiler/rustc_hir_typeck/src/fn_ctxt/mod.rs
@@ -438,6 +438,11 @@ fn parse_never_type_options_attr(
438
}
439
440
let fallback = fallback.unwrap_or_else(|| {
441
+ if true {
442
+ // For a crater experiment, turn off all fallback
443
+ return NoFallback;
444
+ }
445
+
446
if tcx.features().never_type_fallback { FallbackToNiko } else { FallbackToUnit }
447
});
448
0 commit comments