summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr135068/Aaj.aj
blob: 48af01dba3bdb3df9698d35cd7f9cee5e0e0c8f1 (plain)
1
2
3
4
5
6
7
8
import java.net.InetAddress;

public aspect Aaj {

	InetAddress around() throws java.net.UnknownHostException : call(public java.net.InetAddress C.getAddress() throws java.net.UnknownHostException) {
		return InetAddress.getLocalHost();
	}
}