Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/javadoc_ir.txt
T
2023-01-13 02:38:39 +01:00

98 lines
1.5 KiB
Plaintext
Vendored

package javadoc;
/**
* Simple
*/
@kotlin.Metadata()
public final class A {
public A() {
super();
}
}
////////////////////
package javadoc;
/**
* Multi
* line
* comment.
*/
@kotlin.Metadata()
public final class B {
/**
* Nested
* member
* comment.
*/
@org.jetbrains.annotations.NotNull()
private final java.lang.String a = "";
/**
* Mixed
* tabs/spaces
*/
@org.jetbrains.annotations.NotNull()
private final java.lang.String b = "";
/**
* List:
* * first item
* * second item
*/
@org.jetbrains.annotations.NotNull()
private final java.lang.String c = "";
/**
* Without
* stars
*/
@org.jetbrains.annotations.NotNull()
private final java.lang.String d = "";
public B() {
super();
}
/**
* Nested
* member
* comment.
*/
@org.jetbrains.annotations.NotNull()
public final java.lang.String getA() {
return null;
}
/**
* Mixed
* tabs/spaces
*/
@org.jetbrains.annotations.NotNull()
public final java.lang.String getB() {
return null;
}
/**
* List:
* * first item
* * second item
*/
@org.jetbrains.annotations.NotNull()
public final java.lang.String getC() {
return null;
}
/**
* Without
* stars
*/
@org.jetbrains.annotations.NotNull()
public final java.lang.String getD() {
return null;
}
}