Files
why3/bench/java/expected/AnImplementation.java
2024-10-02 11:28:58 +02:00

15 lines
287 B
Java

/* This file has been extracted from module AnImplementation. */
import fr.labri.AnInterface;
public class AnImplementation implements fr.labri.AnInterface, java.lang.Comparable<AnImplementation> {
public int compareTo(AnImplementation other) {
return -1;
}
}