blueprint-compiler/tests/samples/expr_lookup.blp
James Westman 207255897b
expressions: Add casts
These are sometimes necessary. In the future the compiler should be able
to detect when they will be necessary so we don't have to find out at
runtime.
2022-05-05 00:49:41 -05:00

9 lines
106 B
Text

using Gtk 4.0;
Overlay {
Label label {}
}
Label {
label: bind ((Label) label.parent.child).label;
}