Skip to content

Commit 908ccd9

Browse files
committed
Fix run/t5256h.scala under checkinit
1 parent 7375f8e commit 908ccd9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/files/run/t5256h.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ object Test extends App {
66
val c = cm.classSymbol(mutant.getClass)
77
println(c)
88
println(c.fullName)
9-
println(c.info)
9+
// under -Xcheckinit there's an additional $init$ field
10+
c.info.toString.lines.filter(_ != " private var bitmap$init$0: Boolean") foreach println
1011
}

0 commit comments

Comments
 (0)