1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
3
4TestCase := Path {
5 property<float> my_x: 100;
6 property<float> my_y: 200;
7
8 LineTo {
9 x: root.my_x;
10 y: root.my_y;
11 }
12}
13