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
4import { NotExported } from "../../typeloader/incpath/local_helper_type.slint";
5// ^error{No exported type called 'NotExported' found}
6 import { } from "../../typeloader/incpath/local_helper_type.slint";
7//^error{Import names are missing. Please specify which types you would like to import}
8
9export X := Rectangle {
10
11}
12