Force resolve descriptor type

This commit is contained in:
Nikolay Krasko
2014-02-10 19:33:25 +04:00
parent a2c567da93
commit f14ff9405d
6 changed files with 51 additions and 2 deletions
@@ -0,0 +1,9 @@
package test
trait A
class <caret>B {
class object {
fun bar() = object : A { }
}
}
@@ -0,0 +1,5 @@
package test
trait A
class <caret>B(val bar: A = object: A {}, val withError = object: A {}, notProperty = object: A {})
@@ -0,0 +1,7 @@
package test
trait A
public class <caret>B {
private val bar = object : A {}
}
@@ -0,0 +1,7 @@
package test
trait A
public class <caret>B {
private fun bar() = object : A { }
}