mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
Moved sourceJava cases to generated test.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user