mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
This usually can't happen, but delegates pointing at Java appear to be synthesised with this normally-hidden annotation
9 lines
162 B
Java
9 lines
162 B
Java
public class JavaUser {
|
|
|
|
public static void test(KotlinAnnotatedMethods km, KotlinDelegate kd) {
|
|
km.f(null);
|
|
kd.notNullAnnotated("Hello world");
|
|
}
|
|
|
|
}
|