aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/ast/CheckTrees.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/ast/CheckTrees.scala')
-rw-r--r--src/dotty/tools/dotc/ast/CheckTrees.scala4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/dotty/tools/dotc/ast/CheckTrees.scala b/src/dotty/tools/dotc/ast/CheckTrees.scala
index 4790f231b..670dd3730 100644
--- a/src/dotty/tools/dotc/ast/CheckTrees.scala
+++ b/src/dotty/tools/dotc/ast/CheckTrees.scala
@@ -35,8 +35,6 @@ object CheckTrees {
arg match {
case NamedArg(argName, _) =>
check(argName == name)
- case SeqLiteral(_, _) =>
- check(formal.isRepeatedParam)
case _ =>
check(arg.isValue)
}
@@ -187,7 +185,7 @@ object CheckTrees {
case nme.unapplySeq =>
// args need to be wrapped in (...: _*)
check(args.length == 1)
- check(args.head.tpe.isRepeatedParam)
+ check(args.head.isInstanceOf[tpd.SeqLiteral])
case nme.unapply =>
val rtp = funtpe.resultType
val rsym = rtp.dealias.typeSymbol