summaryrefslogtreecommitdiff
path: root/test/files/neg/bug1112.scala
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-08-12 14:39:55 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-08-12 14:39:55 +0000
commitd27e89c0bc0ee1775eae09238319c44e85a44d5d (patch)
treee2f81270d39cadcbe30949757cddf4e7af8ddb42 /test/files/neg/bug1112.scala
parentfe4591ba0c8d727ee563ba4752a86db5d220ec76 (diff)
downloadscala-d27e89c0bc0ee1775eae09238319c44e85a44d5d.tar.gz
scala-d27e89c0bc0ee1775eae09238319c44e85a44d5d.tar.bz2
scala-d27e89c0bc0ee1775eae09238319c44e85a44d5d.zip
Fixing more deprecation warnings.
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
+}