summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cast/cast-rfc0401-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/cast/cast-rfc0401-2.rs')
-rw-r--r--src/test/ui/cast/cast-rfc0401-2.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/ui/cast/cast-rfc0401-2.rs b/src/test/ui/cast/cast-rfc0401-2.rs
new file mode 100644
index 000000000..7709aa341
--- /dev/null
+++ b/src/test/ui/cast/cast-rfc0401-2.rs
@@ -0,0 +1,8 @@
+// RFC 401 test extracted into distinct file. This is because some the
+// change to suppress "derived" errors wound up suppressing this error
+// message, since the fallback for `3` doesn't occur.
+
+fn main() {
+ let _ = 3 as bool;
+ //~^ ERROR cannot cast as `bool`
+}