Files
kotlin-fork/compiler/testData/diagnostics/tests/library/Collections.txt
T
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

14 lines
882 B
Plaintext

package
package collections {
internal fun </*0*/ T> array(/*0*/ vararg t: T /*kotlin.Array<T>*/): kotlin.Array<T>
internal fun </*0*/ T> testCollection(/*0*/ c: kotlin.Collection<T>, /*1*/ t: T): kotlin.Unit
internal fun </*0*/ T> testList(/*0*/ l: kotlin.List<T>, /*1*/ t: T): kotlin.Unit
internal fun </*0*/ K, /*1*/ V> testMap(/*0*/ m: kotlin.Map<K, V>): kotlin.Unit
internal fun </*0*/ T> testMutableCollection(/*0*/ c: kotlin.MutableCollection<T>, /*1*/ t: T): kotlin.Unit
internal fun </*0*/ T> testMutableList(/*0*/ l: kotlin.MutableList<T>, /*1*/ t: T): kotlin.Unit
internal fun </*0*/ K, /*1*/ V> testMutableMap(/*0*/ m: kotlin.MutableMap<K, V>): kotlin.Unit
internal fun </*0*/ T> testMutableSet(/*0*/ s: kotlin.MutableSet<T>, /*1*/ t: T): kotlin.Unit
internal fun </*0*/ T> testSet(/*0*/ s: kotlin.Set<T>, /*1*/ t: T): kotlin.Unit
}