Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/specialBridges/abstractSets.kt
T
2020-09-22 15:26:34 +03:00

15 lines
230 B
Kotlin
Vendored

abstract class ASA : Set<Any>
abstract class ASAN : Set<Any?>
abstract class ASI : Set<Int>
abstract class ASIN : Set<Int?>
abstract class ASS : Set<String>
abstract class ASSN : Set<String?>
abstract class AST<T> : Set<T>