Skip to main content
summaryrefslogtreecommitdiffstats
blob: e7fdc324add3a41a65743596c4e9a10500ab2336 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
public class Foo {

	static class Point {	
		static class Float{
			float x;
			float y;
		}
	}

		void foo(Point.Float[] pts) {
			int bar = 0;int jay = 1;for (int i = 0; i < 5;);}
}

Back to the top