blueprint-compiler/tests/samples/typeof.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

11 lines
No EOL
155 B
Text

using Gtk 4.0;
using GObject 2.0;
using Gio 2.0;
Gio.ListStore {
item-type: typeof<GObject.Object>;
}
Gio.ListStore {
item-type: typeof<$MyObject>;
}