aboutsummaryrefslogtreecommitdiff
path: root/test/pretty/resource/after/Interfaces.java
blob: f7f386c040c5599f7a4919a4e673f986bff78256 (plain)
1
2
3
4
5
6
7
8
9
10
@SuppressWarnings("all")
interface Interfaces {
	enum Ranks {
		CLUBS, HEARTS, DIAMONDS, SPADES;
	}
	int x = 10;
	void y();
	int a = 20;
	void b();
}