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
4//include_path: ../../helper_components
5import { TestButton as RealButton, } from "test_button.slint";
6import { ColorButton } from "../helper_components/test_button.slint";
7import { Button } from "std-widgets.slint";
8import { TestButton as ReExportedButton } from "re_export.slint";
9import { Main_Window } from "main_window.slint";
10TestCase := Rectangle {
11 RealButton {} // aliased from external file
12 ColorButton {} // from external file
13 ReExportedButton {} // from external file re-exported
14 Button {} // from standard library
15}
16