Add test for obsolete issue

#KT-38161 Obsolete
This commit is contained in:
Mikhail Zarechenskiy
2020-06-05 16:28:00 +03:00
parent f9b3daabd1
commit 6c5806f971
6 changed files with 44 additions and 0 deletions
@@ -0,0 +1,11 @@
package
public fun box(): kotlin.String
public operator fun Bar.plus(/*0*/ b: Bar): kotlin.String
public fun interface Bar {
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 abstract fun invoke(): kotlin.String
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}