EA-46019 - assert: PropertyCodegen.generatePropertyDelegateAccess: delegate type can be null when delegate expression is unresolved and back-end called from light class generation

This commit is contained in:
Natalia.Ukhorskaya
2013-05-14 12:21:14 +04:00
parent 04120f432c
commit 32c5f5f59d
3 changed files with 16 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
class SomeProp() {
fun get(t: Any, metadata: PropertyMetadataImpl) = 42
}
class Some<caret>() {
val renderer by SomeProp()
}