diff --git a/idea/performanceTests/org/jetbrains/kotlin/idea/perf/AllKotlinLightClassTest.kt b/idea/performanceTests/org/jetbrains/kotlin/idea/perf/AllKotlinLightClassTest.kt index fc8ffbc22bb..2033d77025f 100644 --- a/idea/performanceTests/org/jetbrains/kotlin/idea/perf/AllKotlinLightClassTest.kt +++ b/idea/performanceTests/org/jetbrains/kotlin/idea/perf/AllKotlinLightClassTest.kt @@ -38,6 +38,9 @@ class AllKotlinLightClassTest : WholeProjectPerformanceTest(), WholeProjectKotli Arrays.hashCode(lightClass.superTypes) Arrays.hashCode(lightClass.fields) Arrays.hashCode(lightClass.methods) + // Just to be sure: access types + lightClass.fields.map { it.type }.hashCode() + lightClass.methods.map { it.returnType }.hashCode() lightClass.hashCode() } })