Add tests for non-compatible ABI changes
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
class Class
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
open class Class
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
const val x = 0
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
const val x = 1
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
fun id(x: Int): Int = x
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
fun id(y: Int): Int = y
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
fun foo() = 0
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
fun foo() = "0"
|
||||
@@ -0,0 +1,4 @@
|
||||
package test
|
||||
|
||||
open class A
|
||||
class B : A()
|
||||
@@ -0,0 +1,4 @@
|
||||
package test
|
||||
|
||||
open class A
|
||||
class B
|
||||
Reference in New Issue
Block a user