TopDown resolve for Int.plus works. FunctionDescriptorUtil.getOriginal() added

This commit is contained in:
Andrey Breslav
2011-02-28 15:24:04 +03:00
parent a532b6db11
commit efdfbbf9bf
3 changed files with 30 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ class A {
fun foo(a : Int) = a
fun fooB() = foo(1)
fun foo() : Int = 1
fun foo() : Int = 1.plus(1)
fun foo1() : B = new B()
}