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

16 lines
535 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 TestCase := Rectangle {
Path {
LineTo { x: 100; y: 0; }
LineTo { x: 100; y: 0; }
LineTo { x: 100; y: 0; }
Rectangle {}
// ^error{Rectangle is not allowed within Path. Only ArcTo Close CubicTo LineTo MoveTo QuadraticTo are valid children}
}
LineTo { x: 100; y: 0; }
// ^error{LineTo can only be within a Path element}
}