Change Signature: Processing of non-Kotlin usages

#KT-5810 Fixed
 #KT-4187 Fixed
This commit is contained in:
Alexey Sedunov
2014-11-18 21:17:23 +03:00
parent c35c4072c6
commit 1008225116
20 changed files with 324 additions and 39 deletions
@@ -0,0 +1,9 @@
class Foo extends A {
Foo() {
super(2, "abc");
}
void foo() {
new A(1, "abc");
}
}