diff --git a/compiler/testData/loadJava/compiledKotlin/visibility/PropertyInConstructor.kt b/compiler/testData/loadJava/compiledKotlin/visibility/PropertyInConstructor.kt index e5528303b04..262a39deae7 100644 --- a/compiler/testData/loadJava/compiledKotlin/visibility/PropertyInConstructor.kt +++ b/compiler/testData/loadJava/compiledKotlin/visibility/PropertyInConstructor.kt @@ -3,7 +3,7 @@ package test open class Base { - protected open val prot = 1 + protected open val prot: Int = 1 internal open val int = 1 public open val pub: Int = 1 }