diff --git a/compiler/testData/codegen/boxInline/reified/kt44770.kt b/compiler/testData/codegen/boxInline/reified/kt44770.kt index 0bea3844e0e..3b5774e0652 100644 --- a/compiler/testData/codegen/boxInline/reified/kt44770.kt +++ b/compiler/testData/codegen/boxInline/reified/kt44770.kt @@ -16,6 +16,7 @@ inline fun test(): String { return (object : S { }::class.java.genericInterfaces[0] as ParameterizedType).actualTypeArguments[0].getTypeName() +} // FILE: 2.kt import test.* @@ -23,4 +24,4 @@ import test.* fun box():String { val test = test() return if (test == OK::class.qualifiedName) "OK" else "fail: $test" -} \ No newline at end of file +} diff --git a/compiler/testData/codegen/boxInline/reified/kt44770_2.kt b/compiler/testData/codegen/boxInline/reified/kt44770_2.kt index 62e1d850d6f..8a2beb37882 100644 --- a/compiler/testData/codegen/boxInline/reified/kt44770_2.kt +++ b/compiler/testData/codegen/boxInline/reified/kt44770_2.kt @@ -16,6 +16,7 @@ inline fun test(): String { return ((object : S> { }::class.java.genericInterfaces[0] as ParameterizedType).actualTypeArguments[0] as ParameterizedType).actualTypeArguments[0].getTypeName() +} // FILE: 2.kt import test.* @@ -23,4 +24,4 @@ import test.* fun box():String { val test = test() return if (test == OK::class.qualifiedName) "OK" else "fail: $test" -} \ No newline at end of file +}