about summary refs log tree commit diff
path: root/tests/ui/binding/underscore-prefixed-function-argument.rs
diff options
context:
space:
mode:
authorKivooeo <Kivooeo123@gmail.com>2025-07-01 23:33:59 +0500
committerKivooeo <Kivooeo123@gmail.com>2025-07-01 23:33:59 +0500
commit1fb5e0149fb85af0e49fa40329cbc352b4cba861 (patch)
tree99717c06e20c4557a9e4d756a13bbf88d8093966 /tests/ui/binding/underscore-prefixed-function-argument.rs
parentf46ce66fcc3d6058f90ac5bf0930f940f1e7b0ca (diff)
downloadrust-1fb5e0149fb85af0e49fa40329cbc352b4cba861.tar.gz
rust-1fb5e0149fb85af0e49fa40329cbc352b4cba861.zip
moved tests
Diffstat (limited to 'tests/ui/binding/underscore-prefixed-function-argument.rs')
-rw-r--r--tests/ui/binding/underscore-prefixed-function-argument.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/binding/underscore-prefixed-function-argument.rs b/tests/ui/binding/underscore-prefixed-function-argument.rs
new file mode 100644
index 00000000000..2014e0d23d8
--- /dev/null
+++ b/tests/ui/binding/underscore-prefixed-function-argument.rs
@@ -0,0 +1,13 @@
+//@ run-pass
+
+fn good(_a: &isize) {
+}
+
+// unnamed argument &isize is now parse x: &isize
+
+fn called<F>(_f: F) where F: FnOnce(&isize) {
+}
+
+pub fn main() {
+    called(good);
+}