blob: 1c122b066fb6f1dbc2a88315bef96921c10d5271 [file] [log] [blame]
package javadoc.testBug65253;
/**
* Comment
* @@@@see Unknown Should not complain on ref
*/
public class Test {
/**
* Comment
* @@@param xxx Should not complain on param
* @@return int Should not be '@return' tag element
*/
int foo() { // should warn on missing tag for return type
return 0;
}
}