Minor: fix compile error in test data

This commit is contained in:
Nikolay Krasko
2017-12-22 15:15:38 +03:00
parent 9fad40b586
commit 5a8c0f8f42
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
A1
-A2
a: Int
b: [ERROR : Annotation is absent]
constructor A2(Int, [ERROR : Type annotation was missing for parameter b] = ...)
b: String
constructor A2(Int, String = ...)
-A3
a: Int
b: String
+1 -1
View File
@@ -15,7 +15,7 @@ val <T> Comparable<T>.a = "String"
internal val b = object {}
class A1
class A2(val a: Int, var b = "some")
class A2(val a: Int, var b: String = "some")
class A3(val a: Int) {
var b = "some"
}