mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
This is imperfect since arguments to those annotations will be missing, but at least the common case of a plain `@NotNull` or `@Nullable` will be right, and the `@NotNull`s introduced by the Kotlin compiler will be present as expected.
8 lines
103 B
Java
8 lines
103 B
Java
public class JavaUser {
|
|
|
|
public static void test(KotlinAnnotatedMethods km) {
|
|
km.f(null);
|
|
}
|
|
|
|
}
|