mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 06:11:16 +00:00
13 lines
418 B
Text
13 lines
418 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
import { LineEdit } from "sixtyfps_widgets.60";
|
|
// ^warning{"sixtyfps_widgets\.60" was renamed "std-widgets\.slint". Use of the old file name is deprecated}
|
|
|
|
|
|
Blah := Window {
|
|
LineEdit {} // Not an error
|
|
Button {} // Not imported
|
|
// ^error{Unknown type Button}
|
|
|
|
}
|