create class from usage: setup generics params as it is done for create from new ( IDEA-43214)

This commit is contained in:
anna
2011-03-11 14:26:34 +01:00
parent bc75f4be30
commit 066f5d8ce8
9 changed files with 65 additions and 17 deletions

View File

@@ -0,0 +1,7 @@
// "Create Class 'Foo'" "true"
public class Test {
<R> void foo(Foo<R, String> f){}
}
public class Foo<R, T> {
}

View File

@@ -0,0 +1,4 @@
// "Create Class 'Foo'" "true"
public class Test {
<R> void foo(Fo<caret>o<R, String> f){}
}