Files
why3/bench/java/expected/AnImplementation.java

15 lines
287 B
Java
Raw Permalink Normal View History

2022-05-13 10:53:00 +02:00
/* 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;
}
}