mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-02 14:51:15 +00:00
9 lines
358 B
Text
9 lines
358 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
import { Rec12 } from "../../typeloader/recursive_import1.slint";
|
|
// ^error{No exported type called 'Rec12' found in ".*recursive_import1.slint"}
|
|
Blah := Rec12 {
|
|
// ^error{Unknown type Rec12}
|
|
width: 100px;
|
|
}
|