mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +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)`.
5 lines
154 B
Python
5 lines
154 B
Python
from create_database_utils import *
|
|
|
|
os.mkdir('build')
|
|
run_codeql_database_create(["kotlinc test.kt -d build", "javac User.java -cp build"], lang="java")
|