Skip to main content
summaryrefslogtreecommitdiffstats
blob: b6bed8b90e6b664aeb6b0a19999d540a2fb90274 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package p;
//initialize in constructors
class A{
	A(){
	}
	A(int e){
	}
	void f(){
		int i= 0;
		i++;
	}
}

Back to the top