aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr135068/C2.java
blob: b363356b1a897e1dc235f991fa0292e1f7ad599d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.net.InetAddress;
import java.net.UnknownHostException;

public class C2 {

	public static InetAddress getAddress() throws UnknownHostException {
		return null;
	}
	
	public static void main(String[] args) throws Exception {
		System.out.println(getAddress().toString());
	}
}