summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala b/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
index 962f749591..51fa7f9b00 100644
--- a/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
@@ -160,7 +160,7 @@ trait SyntheticMethods { self: Analyzer =>
guards += Apply(
Select(
Ident(name),
- if (isVarArg) nme.sameElements else nme.EQEQ),
+ if (isVarArg) nme.sameElements else nme.EQ),
List(Ident(acc)))
Bind(name,
if (isVarArg) Star(Ident(nme.WILDCARD))