mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 13:24:48 +00:00
15 lines
540 B
Text
15 lines
540 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
export App := Rectangle {
|
|
|
|
Rectangle {
|
|
x: inner.absolute-x > 10px ? 10px : 0px;
|
|
// ^error{The binding for the property 'x' is part of a binding loop}
|
|
inner := Rectangle {
|
|
// ^error{The binding for the property 'cached-absolute-xy' is part of a binding loop}
|
|
// ^^error{The binding for the property 'absolute-x' is part of a binding loop}
|
|
}
|
|
}
|
|
|
|
}
|