slint/sixtyfps_compiler/tests/basic/inline_component.60
2020-05-25 10:44:22 +02:00

14 lines
222 B
Text

component Inline1 := Rectangle {
Rectangle {
x: 66;
}
}
SubElements := Rectangle {
Inline1 {
color: yellow;
invalid: yellow;
// ^error{Unkown property invalid in Inline1}
}
}