Fix usages of IGNORE_BACKEND_WITHOUT_CHECK

This commit is contained in:
Zalim Bashorov
2018-04-16 23:54:56 +03:00
parent ad2ea8f999
commit 09d5a0cb89
52 changed files with 79 additions and 58 deletions
@@ -1,7 +1,5 @@
package test
import java.io.Serializable
class SecondaryConstructors(x: Boolean) {
init {
}
@@ -15,7 +13,7 @@ class SecondaryConstructors(x: Boolean) {
private constructor(x: Int) : this(x < 0) {
}
inner class Inner<T : String, G : Int> where G : Serializable {
inner class Inner<T : String, G : Int> where G : Comparable<Int> {
constructor(x: T, g: G) {
}
}