From 5251059ef61f459d805ccbf7d7e9470264227d23 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sun, 23 Aug 2009 14:58:18 +0000 Subject: Fix and test case for #2241. --- src/compiler/scala/tools/nsc/matching/ParallelMatching.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/compiler') diff --git a/src/compiler/scala/tools/nsc/matching/ParallelMatching.scala b/src/compiler/scala/tools/nsc/matching/ParallelMatching.scala index 6dd1996074..315ce16562 100644 --- a/src/compiler/scala/tools/nsc/matching/ParallelMatching.scala +++ b/src/compiler/scala/tools/nsc/matching/ParallelMatching.scala @@ -788,7 +788,8 @@ trait ParallelMatching extends ast.TreeDSL { protected def lengthCheck(tree: Tree, len: Int, op: TreeFunction2) = { def compareOp = head.tpe member nme.lengthCompare // symbol for "lengthCompare" method - typer typed op((tree.duplicate DOT compareOp)(LIT(len)), ZERO) + // first ascertain lhs is not null: bug #2241 + typer typed((tree OBJ_!= NULL) AND op((tree.duplicate DOT compareOp)(LIT(len)), ZERO)) } // precondition for matching: sequence is exactly length of arg -- cgit v1.2.3