Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: dffb734da58ebe21ad33be7da13e6319a8176ef5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package test0483;

public class A {
	
	/**
	 * 
	 * 
	 */
	public A() {
		Runnable runnable = new Runnable() {
			public void run() {
				System.out.println();
			}
		};
	} // comment
}

Back to the top