blob: 86466c49d1e1634e2bb6eb1f53d07618b31ee0b8 [file] [log] [blame]
package javadoc.testBug55221.a;
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; }
}