Kapt3: Add Kapt runner

This commit is contained in:
Yan Zhulanow
2016-10-20 16:06:24 +03:00
committed by Yan Zhulanow
parent 726471d98e
commit aae80fa4ab
6 changed files with 201 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package test;
class Simple {
@MyAnnotation
void myMethod() {
// do nothing
}
}
@interface MyAnnotation {
}