1 | #![allow(deprecated)]slint::slint!{#[include_path= r#"/input/slint/tests/driver/driverlib/../../cases/imports"#] |
---|---|
2 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
3 | // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial |
4 | |
5 | import { ExportedA } from "./exported_component.slint"; |
6 | import { ExportedB } from "./exported_component.slint"; |
7 | |
8 | TestCase := Rectangle { |
9 | ExportedA {} |
10 | ExportedB {} |
11 | } |
12 | } |
13 |