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

class Foo : Object {
	int _fub = 0;

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

void main () {
}