mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-14 08:33:16 +00:00
14 lines
245 B
Java
14 lines
245 B
Java
public class PR20056 {
|
|
int x;
|
|
PR20056(int x) {}
|
|
PR20056(PR20056 f) {
|
|
// The verifier rejected the generated code in this case.
|
|
this(f.x = 0);
|
|
}
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
System.out.println("maude");
|
|
}
|
|
}
|