org.aspectj/tests/symbols/C.java
2002-12-16 18:51:06 +00:00

25 lines
399 B
Java

package symbols;
public class C {
/**
* multiline
* comment
*/
void MethV() { }
public void MethVI(int i) { }
static public synchronized void MethVLF(long l, float f) { }
int MethISO(String s, Object o) { return this.toString().length(); }
public static volatile int i;
public float f;
static {
i = 0;
}
{
f = 1.f;
}
}