summaryrefslogtreecommitdiff
path: root/test/files/neg/bug1112.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/bug1112.scala')
-rw-r--r--test/files/neg/bug1112.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/bug1112.scala b/test/files/neg/bug1112.scala
index 3e108e39af..1a88629faf 100644
--- a/test/files/neg/bug1112.scala
+++ b/test/files/neg/bug1112.scala
@@ -2,13 +2,13 @@
// (due to isFunctionType normalizing Type1 to a function type,
// but then the code that used that test not using the normalized type for further operations)
class Test {
- type Type1 = () => unit
+ type Type1 = () => Unit
- def call(p: int)(f: => Type1) = {
+ def call(p: Int)(f: => Type1) = {
f()
}
def run = {
call(0,() => System.out.println("here we are"))
}
-} \ No newline at end of file
+}