summaryrefslogtreecommitdiff
path: root/test/files/run/t3895.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3895.scala')
-rw-r--r--test/files/run/t3895.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/run/t3895.scala b/test/files/run/t3895.scala
index dfc4a34a32..9028e0a08a 100644
--- a/test/files/run/t3895.scala
+++ b/test/files/run/t3895.scala
@@ -20,6 +20,12 @@ class B extends A{
val b = 12
}
+trait T {
+ private final val a = false
+}
+
+class Impl extends T
+
object Test {
def main(args: Array[String]) {