mirror of
https://github.com/github/codeql.git
synced 2026-04-28 02:05:14 +02:00
Restore nullability annotations
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.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
public class JavaUser {
|
||||
|
||||
public static void test(KotlinAnnotatedMethods km) {
|
||||
km.f(null);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user