fix tests in org.jetbrains.kotlin.checkers

This commit is contained in:
Michael Nedzelsky
2015-09-03 15:25:57 +03:00
parent a3f22939f1
commit bc5c9065d2
2821 changed files with 12932 additions and 12960 deletions
@@ -1,13 +1,13 @@
package
package collections {
internal fun </*0*/ T> array(/*0*/ vararg t: T /*kotlin.Array<out 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
public fun </*0*/ T> array(/*0*/ vararg t: T /*kotlin.Array<out T>*/): kotlin.Array<T>
public fun </*0*/ T> testCollection(/*0*/ c: kotlin.Collection<T>, /*1*/ t: T): kotlin.Unit
public fun </*0*/ T> testList(/*0*/ l: kotlin.List<T>, /*1*/ t: T): kotlin.Unit
public fun </*0*/ K, /*1*/ V> testMap(/*0*/ m: kotlin.Map<K, V>): kotlin.Unit
public fun </*0*/ T> testMutableCollection(/*0*/ c: kotlin.MutableCollection<T>, /*1*/ t: T): kotlin.Unit
public fun </*0*/ T> testMutableList(/*0*/ l: kotlin.MutableList<T>, /*1*/ t: T): kotlin.Unit
public fun </*0*/ K, /*1*/ V> testMutableMap(/*0*/ m: kotlin.MutableMap<K, V>): kotlin.Unit
public fun </*0*/ T> testMutableSet(/*0*/ s: kotlin.MutableSet<T>, /*1*/ t: T): kotlin.Unit
public fun </*0*/ T> testSet(/*0*/ s: kotlin.Set<T>, /*1*/ t: T): kotlin.Unit
}
+1 -1
View File
@@ -1,3 +1,3 @@
package
internal fun test(): kotlin.Unit
public fun test(): kotlin.Unit