Move JVM specific IC tests to separate dir

This commit is contained in:
Alexey Tsvetkov
2017-08-21 07:10:43 +03:00
parent 556c43ae00
commit 2312013c41
19 changed files with 24 additions and 36 deletions
@@ -0,0 +1,8 @@
package foo
open class A(x: Int)
// The use of annotation here is intentional, so no change for "fun A" is detected,
// but after adding default value to A constructor, we want to force resolve to the constructor
@Deprecated("Warning", level = DeprecationLevel.WARNING)
fun A() = A(30)