summaryrefslogtreecommitdiff
path: root/tests/objects/property-read-only-write.test
blob: 7e1e02de2be267b758188993223e5139a076fbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Invalid Code

class Foo : GLib.Object {
	public string test { get; }
	public Foo () {
	}
}

void main () {
	var foo = new Foo ();
	foo.test= "";
}