aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0061.scala
diff options
context:
space:
mode:
authorTobias Schlatter <tobias@meisch.ch>2014-03-20 20:23:02 +0100
committerTobias Schlatter <tobias@meisch.ch>2014-03-20 20:25:05 +0100
commite50646c21cbc842c1188fc876e16ea2b3e2a2ea3 (patch)
tree8355f0ef64102f569ebd970e49c2a591116d0b44 /tests/pos/t0061.scala
parenta4516eac1be98830c99ea48e9baedf022dfcb9f7 (diff)
downloaddotty-e50646c21cbc842c1188fc876e16ea2b3e2a2ea3.tar.gz
dotty-e50646c21cbc842c1188fc876e16ea2b3e2a2ea3.tar.bz2
dotty-e50646c21cbc842c1188fc876e16ea2b3e2a2ea3.zip
Minor improvements to tests (remove old comments)
Diffstat (limited to 'tests/pos/t0061.scala')
-rw-r--r--tests/pos/t0061.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pos/t0061.scala b/tests/pos/t0061.scala
index dd3f94f30..8a3aed7c6 100644
--- a/tests/pos/t0061.scala
+++ b/tests/pos/t0061.scala
@@ -2,8 +2,8 @@ object O {
class testClass ;
- case class testA() extends testClass ; // works if you leave away "extends..."
- // or if you write TestA
+ case class testA() extends testClass ;
+
def ga( x:testClass ) = x match {
case testA() => ()
}