summaryrefslogtreecommitdiffstats
path: root/src/test/ui/match/issue-82392.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/match/issue-82392.rs')
-rw-r--r--src/test/ui/match/issue-82392.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/match/issue-82392.rs b/src/test/ui/match/issue-82392.rs
deleted file mode 100644
index d26d88304..000000000
--- a/src/test/ui/match/issue-82392.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// https://github.com/rust-lang/rust/issues/82329
-// compile-flags: -Zunpretty=hir,typed
-// check-pass
-
-pub fn main() {
- if true {
- } else if let Some(a) = Some(3) {
- }
-}