mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
9 lines
156 B
Java
9 lines
156 B
Java
package test;
|
|
|
|
public class StarProjection {
|
|
void foo(K<?> k) {
|
|
k.foo(null);
|
|
TestPackage.bar(null);
|
|
new Sub().foo(null);
|
|
}
|
|
} |