Files
kotlin-fork/plugins/kapt3/testData/runner/Simple.java
T
2016-12-05 19:57:19 +03:00

12 lines
129 B
Java
Vendored

package test;
class Simple {
@MyAnnotation
void myMethod() {
// do nothing
}
}
@interface MyAnnotation {
}