]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/func-arg-wild-pattern.rs
Rollup merge of #45171 - rust-lang:petrochenkov-patch-2, r=steveklabnik
[rust.git] / src / test / run-pass / func-arg-wild-pattern.rs
index 2eb6279455ea3cffb83aeac0abe58e481c04faa1..3ab3ee4db2d5b997084c63f8b599a9c6174370e5 100644 (file)
@@ -11,9 +11,8 @@
 // Test that we can compile code that uses a `_` in function argument
 // patterns.
 
-// pretty-expanded FIXME #23616
 
-fn foo((x, _): (int, int)) -> int {
+fn foo((x, _): (isize, isize)) -> isize {
     x
 }