| 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 | export Test := Rectangle { |
| 5 | |
| 6 | HorizontalLayout { |
| 7 | spacing-horizontal: 8px; |
| 8 | // ^error{Unknown property spacing-horizontal in HorizontalLayout} |
| 9 | spacing-vertical: 8px; |
| 10 | // ^error{Unknown property spacing-vertical in HorizontalLayout} |
| 11 | } |
| 12 | |
| 13 | VerticalLayout { |
| 14 | spacing-horizontal: 8px; |
| 15 | // ^error{Unknown property spacing-horizontal in VerticalLayout} |
| 16 | spacing-vertical: 8px; |
| 17 | // ^error{Unknown property spacing-vertical in VerticalLayout} |
| 18 | } |
| 19 | |
| 20 | |
| 21 | } |
| 22 | |
| 23 | |