Add Java test file

ida_star
Wilfred Hughes 2021-09-04 19:04:21 +07:00
parent 85f2376dbb
commit ceb42a6ad2
2 changed files with 26 additions and 0 deletions

@ -0,0 +1,13 @@
class Foo {
/**
* Hello world.
*
* <p>More stuff here.</p>
*
* @param stuff {@code String} foo bar
* @returns {@code int}
*/
protected static int blah() {
throw new Exception("before");
}
}

@ -0,0 +1,13 @@
class Foo {
/**
* Hello world.
*
* <p>More stuff here.</p>
*
* @param stuff {@code String} foo bar
* @returns {@code Other}
*/
public static Other blah() {
throw new Exception("before");
}
}