// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 export component TestCase inherits Path { property my_x: 100; stroke: red; stroke-width: 10px; MoveTo {} LineTo { property my_y: 200; x: root.my_x; y: my_y; } }