summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr135068/C.java
blob: 4e8c71d9816214381570d4fec6e73bd7f7078fe7 (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 C {

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