Uast: Fix getExpressionType for elvis expression

#KT-18997 Fixed Target Versions 1.1.5
This commit is contained in:
Vyacheslav Gerasimov
2017-08-21 23:55:43 +03:00
parent e06cb1ec39
commit 2e1edaf3d4
3 changed files with 31 additions and 6 deletions
+6
View File
@@ -0,0 +1,6 @@
fun foo(text: String?) = bar(text ?: return)
fun bar(o: Any) {
}