aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t7232/Foo.java
blob: 3478301b30893901ae6ded555015f4f53fe5519e (plain) (blame)
1
2
3
4
5
6
7
8
9
package pack;

import java.util.List;

public class Foo {
	public static java.util.List okay() { throw new Error(); }

	public static List wrong() { throw new Error(); }
}