summaryrefslogtreecommitdiff
path: root/oop/05-destructor/AccountTest.java
blob: 8c9f4745078e8e151cf1b8b639f0a51acc0c4890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public class AccountTest {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		Account a1 = new Account();
		//....
		//....
		a1 = new Account();
		
		while (true) {
			new Account();
		}
		
	}

}