1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
3
4Inline1 := Rectangle {
5 Rectangle {
6 x: 66phx;
7 }
8}
9
10export SubElements := Rectangle {
11 Inline1 {
12 background: yellow;
13 invalid: yellow;
14// ^error{Unknown property invalid in Inline1}
15// ^^error{Unknown unqualified identifier 'yellow'}
16 }
17}
18