mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
testdata for IDEA-126163
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
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) {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user