1#![allow(deprecated)]slint::slint!{#[include_path=r#"/input/slint/tests/driver/driverlib/../../cases/imports/../../helper_components"#]
2#[include_path=r#"/input/slint/tests/driver/driverlib/../../cases/imports"#]
3// Copyright © SixtyFPS GmbH <info@slint.dev>
4// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
5
6//include_path: ../../helper_components
7import { TestButton as RealButton } from "test_button.slint";
8import { ColorButton } from "../helper_components/test_button.slint";
9import { Button } from "std-widgets.slint";
10import { TestButton as ReExportedButton } from "re_export.slint";
11import { Main_Window } from "main_window.slint";
12TestCase := Rectangle {
13 RealButton {} // aliased from external file
14 ColorButton {} // from external file
15 ReExportedButton {} // from external file re-exported
16 Button {} // from standard library
17}
18}
19