Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/lazyProperty.txt
T
Ivan Gavrilovic dfdd107fc0 Update KAPT stubs for tests
Update expected outputs so they match
the new sorting rules.
2021-01-13 22:49:09 +09:00

48 lines
889 B
Plaintext
Vendored

import java.lang.System;
@kotlin.Metadata()
public final class Foo {
private final kotlin.Lazy foo$delegate = null;
private final kotlin.Lazy bar$delegate = null;
private final kotlin.Lazy baz$delegate = null;
private final kotlin.Lazy generic1$delegate = null;
public Foo() {
super();
}
private final java.lang.Runnable getFoo() {
return null;
}
private final java.lang.Object getBar() {
return null;
}
private final java.lang.Object getBaz() {
return null;
}
private final GenericIntf<java.lang.CharSequence> getGeneric1() {
return null;
}
}
////////////////////
import java.lang.System;
@kotlin.Metadata()
public abstract interface GenericIntf<T extends java.lang.Object> {
}
////////////////////
import java.lang.System;
@kotlin.Metadata()
public abstract interface Intf {
}