summaryrefslogtreecommitdiff
path: root/tests/gtktemplate/gtkchild-property-assignment.test
blob: 85b7df57288118ea84a1a1919c3ed002fa6fe39f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Invalid Code

[GtkTemplate (ui = "/org/example/gtktemplate.ui")]
public class GtkTemplateTest : Gtk.ApplicationWindow {
	[GtkChild]
	public unowned Gtk.Button button0 { get; set; }

	void foo () {
		button0 = new Gtk.Button ();
	}
}

void main () {
}