Extract Function: Fix replacement of type references and constructor references

This commit is contained in:
Alexey Sedunov
2014-05-26 14:51:45 +04:00
parent 3d6fc6e015
commit 4463c67e28
18 changed files with 217 additions and 23 deletions
@@ -0,0 +1,13 @@
// SIBLING:
class MyClass {
fun test() {
unit()
}
public annotation class P
}
fun unit() {
[MyClass.P] val t: Int = 1
t
}