mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-09 20:06:18 +00:00
12 lines
376 B
Text
12 lines
376 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
import "myfont.ttf";
|
|
// ^error{File "myfont.ttf" not found}
|
|
import "myfontcollection.ttc";
|
|
// ^error{File "myfontcollection.ttc" not found}
|
|
import "myimage.png";
|
|
// ^error{Unsupported foreign import "myimage.png"}
|
|
|
|
export Test := Window {
|
|
}
|