blueprint-compiler/tests/samples/expr_lookup.blp
James Westman 78960fcd11
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-07-23 15:10:28 -05:00

9 lines
106 B
Text

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