Skip to content

Instantly share code, notes, and snippets.

View petergeneric's full-sized avatar

Peter petergeneric

View GitHub Profile
@petergeneric
petergeneric / MyAnnotation.java
Created June 17, 2021 12:58
Guice Issue 1526 Reproduction
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation
{
}