mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
testdata for IDEA-27185
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import java.io.Serializable;
|
||||
interface A<T extends Serializable>
|
||||
{
|
||||
<S extends T> S foo(S s);
|
||||
}
|
||||
class B implements A<Number>
|
||||
{
|
||||
@Override
|
||||
public <S extends Number> S foo(S s)
|
||||
{
|
||||
return s;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user