blueprint-compiler/tests/samples/expr_lookup.blp
James Westman 02796fd830 Use <> instead of () for casts & typeof
This makes it clearer that they aren't functions, and it eliminates
syntactic ambiguity with closure expressions.
2023-04-10 09:39:34 -05:00

9 lines
122 B
Text

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