mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
testdata for IDEA-120498
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
|
||||
interface X<T> { void m(T arg); }
|
||||
interface Y<T> { void m(T arg); }
|
||||
interface Z<T> extends X<T>, Y<T> {}
|
||||
|
||||
class App {
|
||||
public static void main(String[] args) {
|
||||
Z<String> z = (String s) -> System.out.println(s);
|
||||
z.m("Hello, world");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user