mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-06 18:40:34 +00:00

We implicitly export the last component of a .slint file to the generator. Issue a warning when that happens and suggest to export it explicitly.
16 lines
501 B
Text
16 lines
501 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only 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}
|
|
}
|