mirror of
https://github.com/AdaCore/why3.git
synced 2026-02-12 12:34:55 -08:00
15 lines
287 B
Java
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|