Skip to content

Instantly share code, notes, and snippets.

View Sparky983's full-sized avatar

Sparky Sparky983

  • Australia
  • 16:47 (UTC +10:00)
View GitHub Profile
@Sparky983
Sparky983 / ojdk_bug.java
Last active October 29, 2022 16:32
is suppose to return `Annotation[]{@deprecated}` but throws an index out of bounds exception
public class Main {
public static void main(String[] args) {
new Main().main();
}
public void main() {
class LocalClass {
LocalClass(@Deprecated String s) {}
}