Removed 'implicit this' from scope for member lookup

This commit is contained in:
Svetlana Isakova
2014-06-24 17:38:13 +04:00
parent 067ac5c94a
commit 91b0ad2023
6 changed files with 17 additions and 18 deletions
@@ -0,0 +1,11 @@
trait Bar {
fun <T> T.bar() {}
}
class A {
class object : Bar
}
fun test() {
A.<error><error>bar</error></error>()
}