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
4component MyPopup inherits PopupWindow {}
5
6component MyPopup2 inherits MyPopup {}
7
8export component TopLevel inherits MyPopup2 {
9// ^error{PopupWindow cannot be the top level}
10 if true : MyPopup2 {}
11// ^error{PopupWindow cannot be directly repeated or conditional}
12}
13