slint/internal/compiler/tests/syntax/new_syntax/new_component.slint
Olivier Goffart 84ae4d2928 New syntax: Only allow children if the component has @children
For compatibility reason, this is also allowed when inheriting
2022-10-28 17:45:37 +02:00

29 lines
No EOL
551 B
Text

// Copyright © SixtyFPS GmbH <info@slint-ui.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
component Foo {
background: 0;
// ^error{Unknown property background$}
width: 12px;
}
component Bar {
Foo {
Rectangle { }
// ^error{'Foo' cannot have children. Only components with @children can have children}
}
Foo {
background: 0;
// ^error{Unknown property background in Foo}
height: self.width;
}
@children
}
component Baz {
Bar {
Foo {}
}
}