summaryrefslogtreecommitdiff
path: root/test/files/run/t6793b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6793b.scala')
-rw-r--r--test/files/run/t6793b.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/run/t6793b.scala b/test/files/run/t6793b.scala
new file mode 100644
index 0000000000..cb3f2fb2fa
--- /dev/null
+++ b/test/files/run/t6793b.scala
@@ -0,0 +1,11 @@
+package a {
+ class C1(val v0: String)
+ class C2(v1: String) extends a.C1(v1) { def foo = v1 }
+}
+
+object Test extends App {
+ new a.C2("x")
+
+ val c2Fields = classOf[a.C2].getDeclaredFields
+ assert(c2Fields.isEmpty, c2Fields.map(_.getName).mkString(", "))
+}