aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/caseClassInMethod.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/caseClassInMethod.scala')
-rw-r--r--tests/pos/caseClassInMethod.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/caseClassInMethod.scala b/tests/pos/caseClassInMethod.scala
index 958e5dd47..2e6484792 100644
--- a/tests/pos/caseClassInMethod.scala
+++ b/tests/pos/caseClassInMethod.scala
@@ -1,5 +1,5 @@
object t {
def f = { object C; case class C(); 1 }
- // pending: def g = { case class D(x: Int); object D; 2 }
+ def g = { case class D(x: Int); object D; 2 }
def h = { case class E(y: Int = 10); 3 }
}