Files
kotlin-fork/compiler/testData/ir/irText/declarations/kt52677.kt
T
Sergej Jaskiewicz aa1b18b0c8 [IR] Prevent infinite recursion when rendering bound symbol references
Refactor the renderer, make BoundSymbolReferenceRenderer a static class
to prevent calling RenderIrElementVisitor's methods from it to avoid
infinite recursion in the future.

^KT-52677 Fixed
2022-11-28 16:43:53 +00:00

17 lines
399 B
Kotlin
Vendored

// ISSUE: KT-52677
@Target(AnnotationTarget.TYPE)
annotation class MySerializable(val c: kotlin.reflect.KClass<*>)
public data class LoginSuccessPacket(val id: Uuid)
public typealias Uuid = @MySerializable(UuidSerializer::class) Uuid1
interface MySerializer<T>
public object UuidSerializer : MySerializer<Uuid>
public class Uuid1
fun foo(): Uuid { throw RuntimeException() }
fun bar() = foo()