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: 07f09c1500441e1c8f82d309f6b21c2427269296 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ibm.test;
public class A {

	/**
	 * Constructor for A
	 */
	public A() {
		super();
	}

	public static void main(String[] args) {
	}
}

Back to the top