Skip to content

Commit

Permalink
attempt to add case shown by #437
Browse files Browse the repository at this point in the history
  • Loading branch information
mebigfatguy committed Nov 24, 2023
1 parent 42bbfa4 commit 73b3279
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/samples/java/ex/OPM_Sample.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,20 @@ public Boolean createRuleBatch(String s, String t) {
return null;
}
}

class GitHubIssue437 implements GHI437Inf {

@Override
public Integer[] getObj(String type) {
return new Integer[0];
}

public void tryIt() {
GitHubIssue437 ghi = new GitHubIssue437();
ghi.getObj("");
}
}

interface GHI437Inf {
Object getObj(String type);
}

0 comments on commit 73b3279

Please sign in to comment.