Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
12 lines
185 B
Java
12 lines
185 B
Java
/* /nodynamiccopyright/ */
|
|
|
|
class A {
|
|
void m1() {
|
|
System.err.println("hello");
|
|
0 // syntax error
|
|
System.err.println("world");
|
|
}
|
|
|
|
void m2() {
|
|
}
|
|
}
|