Unused symbol: fix false positives on inline class constructors

#KT-27434 Fixed
This commit is contained in:
Mikhail Glukhikh
2018-10-26 16:44:02 +03:00
parent 506f7aaa68
commit 700bcb5984
3 changed files with 13 additions and 2 deletions
@@ -0,0 +1,7 @@
// PROBLEM: none
inline class InlineClass(val x: Int) {
<caret>constructor() : this(42)
}
val call = InlineClass()