KT-5971 Missing error when fun argument is safe call

#KT-5971 Fixed
This commit is contained in:
Svetlana Isakova
2014-10-14 21:06:51 +04:00
parent c339df65a9
commit c0c9552f4c
5 changed files with 24 additions and 4 deletions
+1 -1
View File
@@ -279,7 +279,7 @@ public class Converter private(val project: Project,
annotations,
modifiers,
typeConverter.convertType(field.getType(), Nullability.NotNull),
ExpressionList(convertExpressions(argumentList?.getExpressions())).assignPrototype(argumentList))
ExpressionList(convertExpressions(argumentList?.getExpressions() ?: array())).assignPrototype(argumentList))
}
else {
val isVal = isVal(referenceSearcher, field)