summaryrefslogtreecommitdiff
path: root/test/files/run/t6434.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-01-26 11:19:10 -0800
committerPaul Phillips <paulp@improving.org>2013-01-26 11:19:10 -0800
commit72f36cbc80d5667c5ada3b7c0fe60435a4b202ad (patch)
treeb5dd29c21822f4dd6d3064dc1a734a45ca3a712c /test/files/run/t6434.check
parentf01af109ae975461fe5a3120a69814521968fcce (diff)
parentcc067e6508546d3b830422d57034210489a54151 (diff)
downloadscala-72f36cbc80d5667c5ada3b7c0fe60435a4b202ad.tar.gz
scala-72f36cbc80d5667c5ada3b7c0fe60435a4b202ad.tar.bz2
scala-72f36cbc80d5667c5ada3b7c0fe60435a4b202ad.zip
Merge pull request #1974 from paulp/pr/merge-2.10
Merge 2.10.x into master.
Diffstat (limited to 'test/files/run/t6434.check')
-rw-r--r--test/files/run/t6434.check10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/t6434.check b/test/files/run/t6434.check
new file mode 100644
index 0000000000..f898b6b781
--- /dev/null
+++ b/test/files/run/t6434.check
@@ -0,0 +1,10 @@
+Type in expressions to have them evaluated.
+Type :help for more information.
+
+scala> def f(x: => Int): Int = x
+f: (x: => Int)Int
+
+scala> f _
+res0: (=> Int) => Int = <function1>
+
+scala>