slint/sixtyfps_compiler/tests/basic/inline_component.60
Simon Hausmann 747cf18fcd Small typo fix
(Unkown -> Unknown)
2020-05-25 16:42:09 +02:00

14 lines
223 B
Text

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