KT-1648 Function0<Tuple0> appears in the result of the Implement abstract members quick fix

#KT-1648 fixed
This commit is contained in:
Nikolay Krasko
2012-03-27 22:11:07 +04:00
parent b1caa684fd
commit 6964147e44
7 changed files with 85 additions and 37 deletions
@@ -0,0 +1,8 @@
// From KT-1648
trait A {
val method:() -> Unit?
}
fun some() : A {
return object A {<caret>}
}