diff options
Diffstat (limited to 'tests/bugs1920/github_214/Application.java')
-rw-r--r-- | tests/bugs1920/github_214/Application.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs1920/github_214/Application.java b/tests/bugs1920/github_214/Application.java new file mode 100644 index 000000000..5401e0875 --- /dev/null +++ b/tests/bugs1920/github_214/Application.java @@ -0,0 +1,11 @@ +public class Application { + @MarkerTwo + @MarkerOne + public void greet(String name) { + System.out.println("Hello " + name + "!"); + } + + public static void main(String[] args) { + new Application().greet("world"); + } +} |