summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1006.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/pos/bug1006.scala
parentfe4591ba0c8d727ee563ba4752a86db5d220ec76 (diff)
downloadscala-d27e89c0bc0ee1775eae09238319c44e85a44d5d.tar.gz
scala-d27e89c0bc0ee1775eae09238319c44e85a44d5d.tar.bz2
scala-d27e89c0bc0ee1775eae09238319c44e85a44d5d.zip
Fixing more deprecation warnings.
Diffstat (limited to 'test/files/pos/bug1006.scala')
-rw-r--r--test/files/pos/bug1006.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug1006.scala b/test/files/pos/bug1006.scala
index 91eb2d9b7d..34080b68c1 100644
--- a/test/files/pos/bug1006.scala
+++ b/test/files/pos/bug1006.scala
@@ -10,6 +10,6 @@ def test() {
def myVal: T1 = value
}
- Console.println(new B[int](23).myVal)
+ Console.println(new B[Int](23).myVal)
}
}