From caec40b3a8c37621ae9ed18ae0180ddc0d4d30b3 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Sat, 5 Jul 2014 18:31:26 +0400 Subject: [PATCH] Fix test data --- .../loadJava/compiledKotlin/visibility/PropertyInConstructor.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }