| 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 | |
| 5 | export SubElements := Rectangle { |
| 6 | |
| 7 | background: blue; |
| 8 | |
| 9 | Image { |
| 10 | source: @image-url("foo.png"); |
| 11 | } |
| 12 | |
| 13 | Image { |
| 14 | source: @image-url("builtin:/common/does-not-exist.svg"); |
| 15 | // ^error{Cannot find image file builtin:/common/does-not-exist.svg} |
| 16 | } |
| 17 | |
| 18 | Rectangle { |
| 19 | background: red; |
| 20 | } |
| 21 | |
| 22 | |
| 23 | } |
| 24 |
