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
4// TestCase from #7724
5// compilation shouldn't panic
6
7component Hallo {
8 inner := Rectangle {
9 clip: true;
10 @children
11 Rectangle {}
12 }
13}
14
15component World inherits Hallo {
16 Rectangle {}
17 Rectangle {}
18 Rectangle {}
19}
20
21export component Demo {
22 World { }
23}