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