about summary refs log tree commit diff
path: root/tests/ui/binding
diff options
context:
space:
mode:
authorMatthew Jasper <mjjasper1@gmail.com>2023-09-18 15:18:51 +0000
committerMatthew Jasper <mjjasper1@gmail.com>2023-09-19 12:48:40 +0000
commitb49140295c6f67015ae23c855f525e74d3bc24eb (patch)
tree092e641049c1f0651b67601e5e49fe53d8dcc00e /tests/ui/binding
parent078eb1120a3f576598b976d9470701363f48fccc (diff)
downloadrust-b49140295c6f67015ae23c855f525e74d3bc24eb.tar.gz
rust-b49140295c6f67015ae23c855f525e74d3bc24eb.zip
Add more if let guard tests
Diffstat (limited to 'tests/ui/binding')
-rw-r--r--tests/ui/binding/match-beginning-vert.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/ui/binding/match-beginning-vert.rs b/tests/ui/binding/match-beginning-vert.rs
index 79267400b28..93c08f0b710 100644
--- a/tests/ui/binding/match-beginning-vert.rs
+++ b/tests/ui/binding/match-beginning-vert.rs
@@ -1,4 +1,7 @@
 // run-pass
+
+#![feature(if_let_guard)]
+
 enum Foo {
     A,
     B,
@@ -13,6 +16,7 @@ fn main() {
         match *foo {
             | A => println!("A"),
             | B | C if 1 < 2 => println!("BC!"),
+            | D if let 1 = 1 => println!("D!"),
             | _ => {},
         }
     }