blob: 61c232fd1dc3c8e9d0fdd852dbc3c23c40238926 [file] [log] [blame]
package test.tags.param;
interface X01 {
/**
* @param a
* The first parameter. For an optimum result, this should be an odd number
* between 0 and 100.
* @param b
* The second parameter.
*/
int foo(int a, int b);
}