Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8295b884952413b5676cf59787fc6f6f1e29fc86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package test0344;

public class Test {

    public void bugTest() {
        System.out.println("bla");
        System.out.println("blubb");
    }

    private void containsAssert() {
        assert true;
    }

}

Back to the top