Add test for KotlinBytecodeToolWindow

This commit is contained in:
Natalia Ukhorskaya
2015-04-21 15:46:38 +03:00
parent 907f0db7be
commit f936689db3
21 changed files with 254 additions and 1 deletions
@@ -0,0 +1,10 @@
package inlineFun1
class A<T> {
fun test() = 1
inline fun myFun1(f: () -> T): T {
test()
return f()
}
}
@@ -0,0 +1,7 @@
package foo
import inlineFun1.*
fun test() {
A<Int>().myFun1 { 1 }
}