Report diagnostics for inline classes even if the feature is unsupported

This would help for those who use inline classes by suppressing error
 about unsupported feature
This commit is contained in:
Mikhail Zarechenskiy
2018-05-06 02:59:29 +03:00
parent 8834ea74f2
commit 71de2e3265
3 changed files with 10 additions and 3 deletions
@@ -38,3 +38,10 @@ public inline object InlineObject {
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public final inline class NotVal {
public constructor NotVal(/*0*/ x: kotlin.Int)
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}