blob: 8e4efb80fa6cf9e47220d24446fb1440121a8751 [file] [log] [blame]
package javadoc.testBug55221.c;
public class Test {
public int bar() {
int x=0;
if (true) {
x=1;
} else {
x=2;
}
return x;
} /*
* This comment should not be attached to previous method body!
* @return int
*/
public int foo() { return 1; }
}