summaryrefslogtreecommitdiffstats
path: root/test/input/Function-rvalue-reference.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'test/input/Function-rvalue-reference.cxx')
-rw-r--r--test/input/Function-rvalue-reference.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/input/Function-rvalue-reference.cxx b/test/input/Function-rvalue-reference.cxx
new file mode 100644
index 0000000..9a68fd7
--- /dev/null
+++ b/test/input/Function-rvalue-reference.cxx
@@ -0,0 +1,3 @@
+int start(int);
+int start(int&&);
+int&& start(int, int);