mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 15:54:05 +00:00
12 lines
129 B
Java
Vendored
12 lines
129 B
Java
Vendored
package test;
|
|
|
|
class Simple {
|
|
@MyAnnotation
|
|
void myMethod() {
|
|
// do nothing
|
|
}
|
|
}
|
|
|
|
@interface MyAnnotation {
|
|
|
|
} |