slint/internal/compiler/tests/syntax/new_syntax/new_component.slint
2022-10-26 18:09:57 +02:00

18 lines
No EOL
367 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 { }
Foo {
background: 0;
// ^error{Unknown property background in Foo}
height: self.width;
}
}