Moved sourceJava cases to generated test.

This commit is contained in:
Evgeny Gerashchenko
2013-03-07 14:37:10 +04:00
parent b96df65733
commit a0b780c7bb
12 changed files with 43 additions and 21 deletions

View File

@@ -0,0 +1,16 @@
package test;
public interface WrongNumberOfGenericParameters {
interface Zero {}
interface One<T> {}
Zero<String> z();
One o0();
One<String, String> o2();
// This does not produce the expected result, because IDEA thinks Two<X> is a raw type
interface Two<P, Q> {}
Two<String> t1();
}