fix another case of property resolution

val <T> T.prop: Something<T>
This commit is contained in:
Stepan Koltsov
2012-01-13 03:55:11 +04:00
parent a8ff7e5aaf
commit 8055cf0704
3 changed files with 12 additions and 2 deletions
@@ -0,0 +1,4 @@
package test
val <P> P.anotherJavaClass: java.lang.Class<P>
get() = throw Exception()
@@ -0,0 +1,5 @@
package test
var <P> P.anotherJavaClass: java.lang.Class<P>
get() = throw Exception()
set(p: java.lang.Class<P>) = throw Exception()