FIR: Adjust testData for spec tests: resolution ambiguity
Renaming AMBIGUITY -> OVERLOAD_RESOLUTION_AMBIGUITY may help ^KT-38342 Submitted
This commit is contained in:
+59
@@ -0,0 +1,59 @@
|
|||||||
|
// !LANGUAGE: +NewInference
|
||||||
|
// !DIAGNOSTICS: -UNUSED_VARIABLE -ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE -UNUSED_VALUE -UNUSED_PARAMETER -UNUSED_EXPRESSION -NOTHING_TO_INLINE
|
||||||
|
// SKIP_TXT
|
||||||
|
|
||||||
|
/*
|
||||||
|
* KOTLIN DIAGNOSTICS SPEC TEST (NEGATIVE)
|
||||||
|
*
|
||||||
|
* SPEC VERSION: 0.1-278
|
||||||
|
* PLACE: overload-resolution, building-the-overload-candidate-set-ocs, call-without-an-explicit-receiver -> paragraph 5 -> sentence 2
|
||||||
|
* RELEVANT PLACES: overload-resolution, building-the-overload-candidate-set-ocs, call-without-an-explicit-receiver -> paragraph 4 -> sentence 1
|
||||||
|
* overload-resolution, building-the-overload-candidate-set-ocs, call-with-an-explicit-receiver -> paragraph 6 -> sentence 3
|
||||||
|
* overload-resolution, building-the-overload-candidate-set-ocs, call-without-an-explicit-receiver -> paragraph 8 -> sentence 1
|
||||||
|
* overload-resolution, building-the-overload-candidate-set-ocs, call-with-specified-type-parameters -> paragraph 1 -> sentence 2
|
||||||
|
* NUMBER: 3
|
||||||
|
* DESCRIPTION: The overload candidate sets for each pair of implicit receivers: Explicitly imported extension callables
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// FILE: Lib.kt
|
||||||
|
package libPackageCase1
|
||||||
|
import testsCase1.*
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
fun <T> Case1.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
// FILE: Lib.kt
|
||||||
|
package libPackageCase1Explicit
|
||||||
|
import testsCase1.*
|
||||||
|
|
||||||
|
fun <T> Case1.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
// FILE: Lib.kt
|
||||||
|
package libPackageCase1ExplicitDuplicate
|
||||||
|
import testsCase1.*
|
||||||
|
|
||||||
|
fun <T> Case1.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
// FILE: LibtestsPack.kt
|
||||||
|
package testsCase1
|
||||||
|
fun <T> Case1.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
// FILE: TestCase.kt
|
||||||
|
package testsCase1
|
||||||
|
import libPackageCase1.*
|
||||||
|
import libPackageCase1Explicit.emptyArray
|
||||||
|
import libPackageCase1ExplicitDuplicate.emptyArray
|
||||||
|
|
||||||
|
// TESTCASE NUMBER: 1
|
||||||
|
class Case1(){
|
||||||
|
|
||||||
|
fun case1() {
|
||||||
|
<!AMBIGUITY!>emptyArray<!><Int>()
|
||||||
|
}
|
||||||
|
}
|
||||||
+98
@@ -0,0 +1,98 @@
|
|||||||
|
// !LANGUAGE: +NewInference
|
||||||
|
// !DIAGNOSTICS: -UNUSED_VARIABLE -ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE -UNUSED_VALUE -UNUSED_PARAMETER -UNUSED_EXPRESSION -NOTHING_TO_INLINE
|
||||||
|
// SKIP_TXT
|
||||||
|
|
||||||
|
/*
|
||||||
|
* KOTLIN DIAGNOSTICS SPEC TEST (NEGATIVE)
|
||||||
|
*
|
||||||
|
* SPEC VERSION: 0.1-278
|
||||||
|
* PLACE: overload-resolution, building-the-overload-candidate-set-ocs, call-without-an-explicit-receiver -> paragraph 5 -> sentence 2
|
||||||
|
* RELEVANT PLACES: overload-resolution, building-the-overload-candidate-set-ocs, call-without-an-explicit-receiver -> paragraph 4 -> sentence 1
|
||||||
|
* overload-resolution, building-the-overload-candidate-set-ocs, call-with-an-explicit-receiver -> paragraph 6 -> sentence 4
|
||||||
|
* overload-resolution, building-the-overload-candidate-set-ocs, call-without-an-explicit-receiver -> paragraph 8 -> sentence 1
|
||||||
|
* overload-resolution, building-the-overload-candidate-set-ocs, call-without-an-explicit-receiver -> paragraph 6 -> sentence 1
|
||||||
|
* overload-resolution, building-the-overload-candidate-set-ocs, call-with-specified-type-parameters -> paragraph 1 -> sentence 2
|
||||||
|
* NUMBER: 4
|
||||||
|
* DESCRIPTION: The overload candidate sets for each pair of implicit receivers: declared in the package scope extension callables
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// FILE: TestCase.kt
|
||||||
|
// TESTCASE NUMBER: 1
|
||||||
|
package testsCase1
|
||||||
|
import libPackageCase1.*
|
||||||
|
import libPackageCase1Explicit.emptyArray
|
||||||
|
|
||||||
|
fun <T> Case1.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
class Case1(){
|
||||||
|
|
||||||
|
fun case1() {
|
||||||
|
emptyArray<Int>()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// FILE: Lib.kt
|
||||||
|
package libPackageCase1
|
||||||
|
import testsCase1.*
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
fun <T> Case1.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
// FILE: Lib.kt
|
||||||
|
package libPackageCase1Explicit
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
// FILE: LibtestsPack.kt
|
||||||
|
// TESTCASE NUMBER: 1
|
||||||
|
package testsCase1
|
||||||
|
fun <T> Case1.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// FILE: TestCase.kt
|
||||||
|
// TESTCASE NUMBER: 2
|
||||||
|
package testsCase2
|
||||||
|
import libPackageCase2.*
|
||||||
|
import libPackageCase2Explicit.emptyArray
|
||||||
|
|
||||||
|
fun <T> Case2.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
class Case2(){
|
||||||
|
|
||||||
|
fun case1() {
|
||||||
|
emptyArray<Int>()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val Case2.emptyArray: A
|
||||||
|
get() = A()
|
||||||
|
|
||||||
|
class A {
|
||||||
|
operator fun invoke(): Unit = TODO()
|
||||||
|
}
|
||||||
|
|
||||||
|
// FILE: Lib.kt
|
||||||
|
package libPackageCase2
|
||||||
|
import testsCase2.*
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
fun <T> Case2.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
// FILE: Lib.kt
|
||||||
|
package libPackageCase2Explicit
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
// FILE: LibtestsPack.kt
|
||||||
|
// TESTCASE NUMBER: 2
|
||||||
|
package testsCase2
|
||||||
|
fun <T> Case2.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
+54
@@ -0,0 +1,54 @@
|
|||||||
|
// !LANGUAGE: +NewInference
|
||||||
|
// !DIAGNOSTICS: -UNUSED_VARIABLE -ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE -UNUSED_VALUE -UNUSED_PARAMETER -UNUSED_EXPRESSION -NOTHING_TO_INLINE
|
||||||
|
// SKIP_TXT
|
||||||
|
|
||||||
|
/*
|
||||||
|
* KOTLIN DIAGNOSTICS SPEC TEST (NEGATIVE)
|
||||||
|
*
|
||||||
|
* SPEC VERSION: 0.1-278
|
||||||
|
* PLACE: overload-resolution, building-the-overload-candidate-set-ocs, call-without-an-explicit-receiver -> paragraph 5 -> sentence 2
|
||||||
|
* RELEVANT PLACES: overload-resolution, building-the-overload-candidate-set-ocs, call-without-an-explicit-receiver -> paragraph 4 -> sentence 1
|
||||||
|
* overload-resolution, building-the-overload-candidate-set-ocs, call-without-an-explicit-receiver -> paragraph 8 -> sentence 1
|
||||||
|
* overload-resolution, building-the-overload-candidate-set-ocs, call-with-an-explicit-receiver -> paragraph 6 -> sentence 5
|
||||||
|
* overload-resolution, building-the-overload-candidate-set-ocs, call-with-specified-type-parameters -> paragraph 1 -> sentence 2
|
||||||
|
* NUMBER: 5
|
||||||
|
* DESCRIPTION: The overload candidate sets for each pair of implicit receivers: Implicitly imported extension callables
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// FILE: Lib.kt
|
||||||
|
package libPackageCase1
|
||||||
|
import testsCase1.*
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
fun <T> Case1.emptyArray(): Array<T> = TODO()
|
||||||
|
// FILE: Lib.kt
|
||||||
|
package libPackageCase1Duplicate
|
||||||
|
import testsCase1.*
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
fun <T> Case1.emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
// FILE: Lib.kt
|
||||||
|
package libPackageCase1Explicit
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
// FILE: LibtestsPack.kt
|
||||||
|
package testsCase1
|
||||||
|
|
||||||
|
public fun <T> emptyArray(): Array<T> = TODO()
|
||||||
|
|
||||||
|
// FILE: TestCase.kt
|
||||||
|
package testsCase1
|
||||||
|
import libPackageCase1.*
|
||||||
|
import libPackageCase1Duplicate.*
|
||||||
|
import libPackageCase1Explicit.emptyArray
|
||||||
|
|
||||||
|
// TESTCASE NUMBER: 1
|
||||||
|
class Case1(){
|
||||||
|
|
||||||
|
fun case1() {
|
||||||
|
<!AMBIGUITY!>emptyArray<!><Int>()
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user