KT-112 Cannot rename a class on a constructor call site

#KT-112 Obsolete
This commit is contained in:
Nikolay Krasko
2012-09-05 19:33:43 +04:00
parent 34eade6f4f
commit c587a1375f
3 changed files with 13 additions and 1 deletions
@@ -0,0 +1,4 @@
class TestX(val x : Int) {
}
val x = TestX(1)
@@ -0,0 +1,4 @@
class X(val x : Int) {
}
val x = X(1)