]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/nil-pattern.rs
Rollup merge of #45171 - rust-lang:petrochenkov-patch-2, r=steveklabnik
[rust.git] / src / test / run-pass / nil-pattern.rs
index 329590b547db3a5aaa525d86f47f7ce5d8c6c0a1..342644e03843725b332a86a8baf5a91b0a26d0c9 100644 (file)
@@ -8,4 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+// pretty-expanded FIXME #23616
+
 pub fn main() { let x = (); match x { () => { } } }