Move test loading Java TYPE_USE annotation to Java8 module
#KT-11454 Fixed
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
package test;
|
||||
|
||||
import java.lang.annotation.*;
|
||||
|
||||
@Target(ElementType.TYPE_USE)
|
||||
@interface A {
|
||||
String value() default "";
|
||||
}
|
||||
|
||||
interface G<T> {}
|
||||
interface G2<A, B> {}
|
||||
|
||||
public interface TypeAnnotations<TT> {
|
||||
void f(G<@A String> p);
|
||||
void f(G2<@A String, @A Integer> p);
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
package test
|
||||
|
||||
public interface TypeAnnotations</*0*/ TT : kotlin.Any!> {
|
||||
public abstract fun f(/*0*/ p: test.G2<@test.A() kotlin.String!, @test.A() kotlin.Int!>!): kotlin.Unit
|
||||
public abstract fun f(/*0*/ p: test.G<@test.A() kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
Reference in New Issue
Block a user