1
2// Copyright © SixtyFPS GmbH <info@slint.dev>
3// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
4
5import { NotExist } from "idontexist.slint";
6// ^error{Cannot find requested import "idontexist.slint" in the include search path}
7
8export component Bug {
9 callback foo <=> xx.foo;
10 out property bar <=> xx.bar;
11 in property <int> wyz <=> xx.wyz;
12 xx := NotExist { }
13}