summaryrefslogtreecommitdiffstats
path: root/src/test/ui/match/match-ill-type2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/match/match-ill-type2.rs')
-rw-r--r--src/test/ui/match/match-ill-type2.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/ui/match/match-ill-type2.rs b/src/test/ui/match/match-ill-type2.rs
new file mode 100644
index 000000000..6612f6e39
--- /dev/null
+++ b/src/test/ui/match/match-ill-type2.rs
@@ -0,0 +1,7 @@
+fn main() {
+ match 1i32 {
+ 1i32 => 1,
+ 2u32 => 1, //~ ERROR mismatched types
+ _ => 2,
+ };
+}