summaryrefslogtreecommitdiff
path: root/tests/objects/bug795225-2.test
blob: fc04d5aa715cf5cf817c61bacfce6ce00c0cbe51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Invalid Code

class Foo : Object {
	int _fub = 0;

	public int bar {
		get { return _fub; }
		set { _fub = value / 2; }
		default = 42;
	}
}

void main () {
}