summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/pending/pos/unapplyGeneric.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pending/pos/unapplyGeneric.scala b/test/pending/pos/unapplyGeneric.scala
index 3798d0b466..bf88816885 100644
--- a/test/pending/pos/unapplyGeneric.scala
+++ b/test/pending/pos/unapplyGeneric.scala
@@ -5,7 +5,7 @@ object Bar {
class Bar[A,B](val _1:A, val _2:B) extends Product2[A,B]
object Test {
- Bar(2, 'a') match {
+ new Bar(2, 'a') match {
case Bar(x,y) =>
}
}