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 385fa9d commit 1868b33Copy full SHA for 1868b33
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, set `fallback = !`
443
+ return FallbackToNever;
444
+ }
445
+
446
if tcx.features().never_type_fallback { FallbackToNiko } else { FallbackToUnit }
447
});
448
0 commit comments