mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-09 03:50:34 +00:00
13 lines
342 B
Text
13 lines
342 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
export Demo := Window {
|
|
callback foobar;
|
|
TouchArea {
|
|
clicked => {
|
|
root
|
|
// ^error{'root.foobar' must be called. Did you forgot the '\(\)'\?}
|
|
.foobar
|
|
}
|
|
}
|
|
}
|