summaryrefslogtreecommitdiffstats
path: root/tests/ui/never_type/diverging-fallback-unconstrained-return.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/never_type/diverging-fallback-unconstrained-return.rs')
-rw-r--r--tests/ui/never_type/diverging-fallback-unconstrained-return.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/never_type/diverging-fallback-unconstrained-return.rs b/tests/ui/never_type/diverging-fallback-unconstrained-return.rs
index 7ea97126f..26c8175be 100644
--- a/tests/ui/never_type/diverging-fallback-unconstrained-return.rs
+++ b/tests/ui/never_type/diverging-fallback-unconstrained-return.rs
@@ -1,4 +1,4 @@
-// Variant of diverging-falllback-control-flow that tests
+// Variant of diverging-fallback-control-flow that tests
// the specific case of a free function with an unconstrained
// return type. This captures the pattern we saw in the wild
// in the objc crate, where changing the fallback from `!` to `()`
@@ -9,7 +9,7 @@
// revisions: nofallback fallback
#![cfg_attr(fallback, feature(never_type, never_type_fallback))]
-
+#![allow(unit_bindings)]
fn make_unit() {}