1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
3
4export component Hello {
5 Rectangle {
6 absolute-position: {x: 45px, y: 78px};
7// ^error{Cannot assign to output property 'absolute-position'}
8
9 }
10
11 Rectangle {
12 init => {
13 self.absolute-position.x += 45px;
14// ^error{Self assignment on a output property}
15 }
16 }
17}
18