slint/internal/compiler/tests/syntax/analysis/binding_loop_mappointtowindow.slint
2023-07-10 10:12:11 +02:00

14 lines
488 B
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
export App := Rectangle {
Rectangle {
x: inner.absolute-position.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 'absolute-position' is part of a binding loop}
}
}
}