mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 15:51:54 +00:00
javac-wrapper: refactoring, fixes and tests
This commit is contained in:
committed by
Alexander Baratynskiy
parent
8494e54608
commit
01883a41cb
@@ -1,3 +1,4 @@
|
||||
// JAVAC_EXPECTED_FILE
|
||||
package test;
|
||||
|
||||
public interface WrongNumberOfGenericParameters {
|
||||
|
||||
17
compiler/testData/loadJava/sourceJava/WrongNumberOfGenericParameters.javac.txt
vendored
Normal file
17
compiler/testData/loadJava/sourceJava/WrongNumberOfGenericParameters.javac.txt
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
package test
|
||||
|
||||
public interface WrongNumberOfGenericParameters {
|
||||
public abstract fun o0(): test.WrongNumberOfGenericParameters.One<(raw) kotlin.Any!>!
|
||||
public abstract fun o2(): test.WrongNumberOfGenericParameters.One<(raw) kotlin.Any!>!
|
||||
public abstract fun t1(): test.WrongNumberOfGenericParameters.Two<(raw) kotlin.Any!, (raw) kotlin.Any!>!
|
||||
public abstract fun z(): test.WrongNumberOfGenericParameters.Zero!
|
||||
|
||||
public interface One</*0*/ T : kotlin.Any!> {
|
||||
}
|
||||
|
||||
public interface Two</*0*/ P : kotlin.Any!, /*1*/ Q : kotlin.Any!> {
|
||||
}
|
||||
|
||||
public interface Zero {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user