blob: e97c9ab0654fcb61c8888b50f2295f6d741e0571 [file] [log] [blame]
package javadoc.testBug51241;
public class X {
// First class line comment
int i;
// C1
void foo() {
int x;
// C2
int y;
// First method line comment
}
// Syntax error here!
int z
// Second class line comment
void bar() {
// Second method line comment
}
}