aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/assignment_2.java
blob: 38b58db76ee21aa51cc8a38958ee7fcdf4fbb89b (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

/**
 * assignment_2.java
 *
 *
 * Created: Thu Apr 13 16:48:40 2000
 *
 * @author Oliver Brandt
 * @version
 */

public class assignment_2  {
    public assignment_2 () 
    {
    }
    
    public int foo ()
    {
        int result;
        
        try
        {
            result = 0;
        }
        finally
        {
        }
        return result;
        
    }
    
}// test