mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 13:24:48 +00:00
12 lines
382 B
Text
12 lines
382 B
Text
|
|
Test := Rectangle {
|
|
property<int32> foo;
|
|
foo: 100;
|
|
property<NonExistent> bar;
|
|
// ^error{Unknown property type 'NonExistent'}
|
|
property<float32> foo;
|
|
// ^error{Cannot override property 'foo'}
|
|
property<string> text: "property with binding initializer";
|
|
property<int32> x;
|
|
// ^error{Cannot override property 'x'}
|
|
}
|