summaryrefslogtreecommitdiff
path: root/test/files/jvm/t3003/Test_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/t3003/Test_1.scala')
-rw-r--r--test/files/jvm/t3003/Test_1.scala9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/files/jvm/t3003/Test_1.scala b/test/files/jvm/t3003/Test_1.scala
index ec7f220c94..8ec08bebc6 100644
--- a/test/files/jvm/t3003/Test_1.scala
+++ b/test/files/jvm/t3003/Test_1.scala
@@ -3,6 +3,13 @@ class C {
}
object Test {
def main(args: Array[String]) {
- println(classOf[C].getDeclaredFields.toList.sortBy(f => f.getName).map(f => f.getAnnotations.toList))
+ val xs = (
+ classOf[C].getDeclaredFields.toList
+ . sortBy(f => f.getName)
+ . map(f => f.getAnnotations.toList)
+ . filterNot (_.isEmpty) // there are extra fields under -Xcheckinit
+ )
+
+ println(xs)
}
}