Files
kotlin-fork/compiler/testData/ir/irText/firProblems/FlushFromAnonymous.kt.txt
T
2021-11-09 21:04:38 +03:00

34 lines
586 B
Plaintext
Vendored

class Serializer {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun serialize() {
val messageCollector: <no name provided> = <this>.createMessageCollector()
try { // BLOCK
}
catch (e: Throwable){ // BLOCK
messageCollector.flush()
}
}
private fun createMessageCollector(): <no name provided> {
return { // BLOCK
local class <no name provided> : Collector {
constructor() /* primary */ {
super/*Collector*/()
/* <init>() */
}
}
<no name provided>()
}
}
}