Commit 8ecbf79b authored by Carlos Galindo's avatar Carlos Galindo
Browse files

Merge branch 'TFM-Jonathan' into 'develop'

adding classes for testing

See merge request !64
parents a00f0d82 c9843c55
Loading
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
public class BasicContraExample {

    public static void main(String[] args) {
        f();
        while(true) {
            f();
        }
    }

    public static void f() {
        int x = 1;
    }
}
 No newline at end of file
+15 −0
Original line number Diff line number Diff line
public class TestChainCall {

    public static void main(String[] args) {
        f();
        g();
    }

    public static void f() {
        g();
    }

    public static void g() {
        int x = 1;
    }
}
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
public class TestExamplePaperSimple {
public class TestExamplePaperSimpleContra1 {

    public static void main(String[] args) {

+1 −1
Original line number Diff line number Diff line
public class TestExamplePaperSimple {
public class TestExamplePaperSimpleContra2 {

    public static void main(String[] args) {

+1 −1
Original line number Diff line number Diff line
public class TestExamplePaperSimple {
public class TestExamplePaperSimpleContra3 {

    public static void main(String[] args) {

Loading