summaryrefslogtreecommitdiff
path: root/test/files/specialized/spec-ame.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/specialized/spec-ame.scala')
-rw-r--r--test/files/specialized/spec-ame.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/specialized/spec-ame.scala b/test/files/specialized/spec-ame.scala
index 79ee4217ed..129fb9f447 100644
--- a/test/files/specialized/spec-ame.scala
+++ b/test/files/specialized/spec-ame.scala
@@ -13,6 +13,9 @@ object Test {
def main(args: Array[String]) {
println((new A("abc")).foo.value)
println((new A(10)).foo.value)
+ // before fixing SI-7343, this was printing 3. Now it's printing 2,
+ // since the anonymous class created by doing new B[T] { ... } when
+ // T = Int is now rewired to B$mcI$sp instead of just B[Int]
println(runtime.BoxesRunTime.integerBoxCount)
}
}