72 lines
1.3 KiB
Kotlin
Vendored
72 lines
1.3 KiB
Kotlin
Vendored
// !WITH_NEW_INFERENCE
|
|
package h
|
|
|
|
interface A<T> {}
|
|
|
|
fun <T> newA(): A<T> = throw Exception()
|
|
|
|
interface Z
|
|
|
|
fun <T> id(t: T): T = t
|
|
|
|
//binary expressions
|
|
//identifier
|
|
infix fun <T> Z.foo(a: A<T>): A<T> = a
|
|
|
|
fun test(z: Z) {
|
|
z foo newA()
|
|
val a: A<Int> = id(z foo newA())
|
|
val b: A<Int> = id(z.foo(newA()))
|
|
use(a, b)
|
|
}
|
|
|
|
//binary operation expression
|
|
operator fun <T> Z.plus(a: A<T>): A<T> = a
|
|
|
|
fun test1(z: Z) {
|
|
id(z + newA())
|
|
val a: A<Z> = z + newA()
|
|
val b: A<Z> = z.plus(newA())
|
|
val c: A<Z> = id(z + newA())
|
|
val d: A<Z> = id(z.plus(newA()))
|
|
use(a, b, c, d)
|
|
}
|
|
|
|
//comparison operation
|
|
operator fun <T> Z.compareTo(a: A<T>): Int { use(a); return 1 }
|
|
|
|
fun test2(z: Z) {
|
|
val a: Boolean = id(z < newA())
|
|
val b: Boolean = id(z < newA<Z>())
|
|
use(a, b)
|
|
}
|
|
|
|
//'equals' operation
|
|
fun Z.equals(any: Any): Int { use(any); return 1 }
|
|
|
|
fun test3(z: Z) {
|
|
z == newA()
|
|
z == newA<Z>()
|
|
id(z == newA())
|
|
id(z == newA<Z>())
|
|
|
|
id(z === newA())
|
|
id(z === newA<Z>())
|
|
}
|
|
|
|
//'in' operation
|
|
fun test4(collection: Collection<A<*>>) {
|
|
id(newA() in collection)
|
|
id(newA<Int>() in collection)
|
|
}
|
|
|
|
//boolean operations
|
|
fun <T> toBeOrNot(): Boolean = throw Exception()
|
|
|
|
fun test5() {
|
|
if (toBeOrNot() && toBeOrNot()) {}
|
|
if (toBeOrNot<Int>() && toBeOrNot<Int>()) {}
|
|
}
|
|
|
|
//use
|
|
fun use(vararg a: Any?) = a |