mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
more java tests moved to community
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// "Create Method 'foo'" "true"
|
||||
interface Int<T> {
|
||||
}
|
||||
|
||||
class A1<T> implements Int<T> {
|
||||
public void foo(Int<T> c) {
|
||||
<selection>//To change body of created methods use File | Settings | File Templates.</selection><caret>
|
||||
}
|
||||
}
|
||||
|
||||
class B1 {
|
||||
A1<String> a;
|
||||
void foo (Int<String> c) {
|
||||
a.foo(c);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user