about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0527.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/error-codes/E0527.rs')
-rw-r--r--tests/ui/error-codes/E0527.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/error-codes/E0527.rs b/tests/ui/error-codes/E0527.rs
new file mode 100644
index 00000000000..af055ff269e
--- /dev/null
+++ b/tests/ui/error-codes/E0527.rs
@@ -0,0 +1,9 @@
+fn main() {
+    let r = &[1, 2, 3, 4];
+    match r {
+        &[a, b] => {
+            //~^ ERROR E0527
+            println!("a={}, b={}", a, b);
+        }
+    }
+}