aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/src/test/resources/map-annotation-arguments/workload/src/main/java/com/example/AnnotationTest.java
blob: 18696806a1946f8b90def8c9f1d3444fe861e418 (plain)
1
2
3
4
5
6
7
8
package com.example;

@JavaAnnotation(
    unboxedChar = char.class,
    boxedChar = Character.class
)
public class AnnotationTest {
}