summaryrefslogtreecommitdiff
path: root/tests/parser/destructor-static-exists.test
blob: 4175a9d4328124f53dceb6d72315147f883ed177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Invalid Code

public class Test {
	static ~Test () {
	}

	static ~Test () {
	}
}

void main () {
}