Fix some tests bound to changed annotation formatting

This commit is contained in:
Mikhail Glukhikh
2018-08-31 14:37:31 +03:00
parent 53c10238d6
commit 68da28edb9
4 changed files with 8 additions and 4 deletions
@@ -4,7 +4,8 @@ internal class A() {
private val s = ""
private val x = 0
@JvmOverloads constructor(p: Int, s: String, x: Int = 1) : this() {
@JvmOverloads
constructor(p: Int, s: String, x: Int = 1) : this() {
this.s = s
this.x = x
}