mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
30 lines
439 B
Java
30 lines
439 B
Java
class Test {
|
|
|
|
public static void main( String[] args ) throws Exception {
|
|
Checker.assertThat("", Utils.is(Utils.notNullValue()));
|
|
}
|
|
}
|
|
|
|
interface Util<T> {
|
|
}
|
|
|
|
class Utils {
|
|
static <T> Util<T> is( Util<T> util ) {
|
|
return null;
|
|
}
|
|
|
|
static <T> Util<T> is( T t ) {
|
|
return null;
|
|
}
|
|
|
|
static <T> Util<T> notNullValue() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class Checker {
|
|
static <T> void assertThat(T actual, Util<T> util) {
|
|
}
|
|
}
|
|
|