Change Signature: Represent parameter/receiver types using KotlinTypeInfo

This commit is contained in:
Alexey Sedunov
2015-12-16 14:42:06 +03:00
parent e558581667
commit fd79145b73
21 changed files with 205 additions and 152 deletions
@@ -4,9 +4,9 @@ fun test() {
}
abstract class K0 {
abstract fun foo(c: Int, a1: A?): Int
abstract fun foo(c: Int, a1: A): Int
}
open class K: K0() {
override fun foo(c: Int, a1: A?) = a + b + c
override fun foo(c: Int, a1: A) = a + b + c
}