package javadoc; /** A test class. */ public class Test { /** A javadoc * comment */ void f() {} /** Another javadoc comment */ // and a normal comment void g() {} /* another normal comment */ int x; int y; /** @deprecated */ void h() {} }