We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7375f8e commit 908ccd9Copy full SHA for 908ccd9
test/files/run/t5256h.scala
@@ -6,5 +6,6 @@ object Test extends App {
6
val c = cm.classSymbol(mutant.getClass)
7
println(c)
8
println(c.fullName)
9
- println(c.info)
+ // under -Xcheckinit there's an additional $init$ field
10
+ c.info.toString.lines.filter(_ != " private var bitmap$init$0: Boolean") foreach println
11
}
0 commit comments