aboutsummaryrefslogtreecommitdiff
path: root/test-utils/testData/api/typeParameterReference.kt
blob: bc1428d2b2a73c8fab12e2d7e17bb10982ddb19d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
 * Copyright 2020 Google LLC
 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

// WITH_RUNTIME
// TEST PROCESSOR: TypeParameterReferenceProcessor
// EXPECTED:
// LibFoo: false
// SelfReferencing: false
// kotlin.String: false
// SelfReferencing.T: false
// Foo.T1: true
// Foo.bar.T2: false
// foo.T3: false
// T
// List<T>
// T
// MutableList<(T..T?)>
// (SelfReferencingJava<(T..T?)>..SelfReferencingJava<(T..T?)>?)
// (T1..T1?)
// END

// MODULE: lib
// FILE: lib.kt
interface LibFoo<T> {
    val v: T
    val w: List<T>
}

// FILE: LibSR.kt
package lib;
class SelfReferencing<T : SelfReferencing<T>>

// FILE: JavaLib.java
import java.util.List;

interface JavaLib<T> {
    public T genericFun();
    public List<T> list();
}

// MODULE: main(lib)
// FILE: main.kt

class SelfReferencing<T : SelfReferencing<T>>

class Foo<T1> {
    inner class Bar {
        val v: T1?
    }

    fun <T2> bar(p: T2) = 1

    val libFoo: LibFoo<String>
}

fun <T3> foo(p: T3) = 1

// FILE: SelfReferencingJava.java
public class SelfReferencingJava<T extends SelfReferencingJava<T>> {
}

// FILE: BoundedTypeParameter.java

public class BoundedTypeParameter {
    static <T1, T2 extends T1> T2 method(T1 input) {
        return null;
    }
}