mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
This arises when a generic class extends one of its parameters; for example, `class G<T> { val T.v; get() = 1 }`, where specialisation `G<List>` should generate a method specialisation `getV(List)`.
10 lines
118 B
Java
10 lines
118 B
Java
public class User {
|
|
|
|
public static void test(KotlinClass<String> kc) {
|
|
|
|
kc.getKotlinVal("Hello world");
|
|
|
|
}
|
|
|
|
}
|