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 1a88629faf..b2a374c785 100644
--- a/test/files/neg/bug1112.scala
+++ b/test/files/neg/bug1112.scala
@@ -1,13 +1,13 @@
// checks that error doesn't crash the compiler
-// (due to isFunctionType normalizing Type1 to a function type,
+// (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
-
+
def call(p: Int)(f: => Type1) = {
f()
}
-
+
def run = {
call(0,() => System.out.println("here we are"))
}