mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 21:15:58 +07:00
(IDEA-67832; IDEA-67837; IDEA-67573; IDEA-57306; IDEA-57535; IDEA-57269; IDEA-57278; IDEA-57317)
18 lines
188 B
Java
18 lines
188 B
Java
interface A
|
|
{
|
|
abstract void foo(String[] ... s);
|
|
}
|
|
|
|
interface B
|
|
{
|
|
abstract void foo(String[] s);
|
|
}
|
|
|
|
class C<T extends A & B>
|
|
{
|
|
void bar(T x)
|
|
{
|
|
x.foo(null);
|
|
}
|
|
}
|