Regenerate test data with constructed descriptors for diagnostics tests

This commit is contained in:
Nikolay Krasko
2014-09-16 15:25:22 +04:00
parent de61456725
commit e796f88b38
1579 changed files with 68596 additions and 0 deletions
@@ -0,0 +1,13 @@
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
}
@@ -0,0 +1,3 @@
package
internal fun test(): kotlin.Unit