JavaTXCompilerInJavaTXNoMaven/resources/syntaxtreegenerator/SimpleCycle.ast
2024-05-02 23:04:07 +02:00

18 lines
180 B
Plaintext

class SimpleCycle {
SimpleCycle(){
super(());
}
TPH ETMJ m(){
TPH ETMK g;
TPH ETML h;
g = h;
h = g;
return;
}
SimpleCycle(){
super(());
}
}