Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/annotations3.txt
T
Yan Zhulanow edcf0aef53 Kapt: Allow Kotlin @Repeatable annotations (KT-22451)
We don't generate a wrapper for repeatable annotations, and Javac complains to it.
2018-02-09 19:11:03 +03:00

89 lines
1.6 KiB
Plaintext
Vendored

import java.lang.System;
@kotlin.Metadata()
public final class B {
public B() {
super();
}
}
////////////////////
import java.lang.System;
@kotlin.Metadata()
public final class BParceler implements Parceler<B> {
public static final BParceler INSTANCE = null;
private BParceler() {
super();
}
}
////////////////////
import java.lang.System;
@kotlin.Metadata()
public final class C {
public C() {
super();
}
}
////////////////////
import java.lang.System;
@kotlin.Metadata()
public final class CParceler implements Parceler<C> {
public static final CParceler INSTANCE = null;
private CParceler() {
super();
}
}
////////////////////
import java.lang.System;
@kotlin.Metadata()
public abstract interface Parceler<T extends java.lang.Object> {
}
////////////////////
import java.lang.System;
@TypeParceler()
@TypeParceler()
@kotlin.Metadata()
public final class Test {
public Test() {
super();
}
}
////////////////////
import java.lang.System;
@kotlin.Metadata()
@java.lang.annotation.Target(value = {java.lang.annotation.ElementType.TYPE})
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.SOURCE)
@kotlin.annotation.Target(allowedTargets = {kotlin.annotation.AnnotationTarget.CLASS, kotlin.annotation.AnnotationTarget.PROPERTY})
@kotlin.annotation.Repeatable()
@kotlin.annotation.Retention(value = kotlin.annotation.AnnotationRetention.SOURCE)
public abstract @interface TypeParceler<T extends java.lang.Object, P extends Parceler<? super T>> extends java.lang.annotation.Annotation {
}