Unused symbol: handle functions with inline class parameters correctly

#KT-27357 Fixed
This commit is contained in:
Mikhail Glukhikh
2018-10-18 16:34:06 +03:00
parent 0678a56ca4
commit a5e508a083
7 changed files with 71 additions and 1 deletions
@@ -0,0 +1,7 @@
// PROBLEM: none
inline class InlineClass(val x: Int)
fun InlineClass.<caret>takeInline() = 1
val call = InlineClass(1).takeInline()