aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0091.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/t0091.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/t0091.scala')
-rw-r--r--tests/pos/t0091.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/t0091.scala b/tests/pos/t0091.scala
index d491b7cfb..414e2c931 100644
--- a/tests/pos/t0091.scala
+++ b/tests/pos/t0091.scala
@@ -1,6 +1,6 @@
class Bug {
def main(args: Array[String]) = {
- var msg: String = null; // no bug if "null" instead of "_"
+ var msg: String = null;
val f: PartialFunction[Any, Unit] = { case 42 => msg = "coucou" };
}
}