aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features153/jdtlikehandleprovider/Demo.java
blob: 1812d06f81444c3bd6d72d822959def595e9545a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package tjp;

import java.io.*;

public class Demo {
    static Demo d;

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

    public void m(int[] args) {
    }
    
    void go(){
    	int i = 4;
    }

    void foo(int i, Object o){
    }

    String bar (Integer j){
    	return "";
    }
    
    public void m2(String s1, String s2) {
    }
}