mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-27 12:29:41 +00:00

eg, don't report an error for each callback or animation or changed event that the the property doesn't exist or such. Also reword the message when an element doesn't exist. Use "element" rather than "type" as it is more accurate.
11 lines
486 B
Text
11 lines
486 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
export Test3 := Rectangle {
|
|
TabWidget {
|
|
// ^error{Unknown element 'TabWidget'. \(The type exist as an internal type, but cannot be accessed in this scope\)}
|
|
}
|
|
}
|
|
|
|
export Foo := TabWidget { }
|
|
// ^error{Unknown element 'TabWidget'. \(The type exist as an internal type, but cannot be accessed in this scope\)}
|