mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-03 00:57:22 +00:00
15 lines
482 B
Text
15 lines
482 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
|
|
struct NotExportedStruct0 := { a: int }
|
|
struct NotExportedStruct1 := { b: int, c: NotExportedStruct0 }
|
|
struct NotExportedStruct2 := { z: int }
|
|
|
|
export struct ExportedStruct := { d: int, e: NotExportedStruct0 }
|
|
|
|
export UseStruct := Rectangle {
|
|
property<ExportedStruct> exp;
|
|
property<NotExportedStruct1> nexp;
|
|
property<[NotExportedStruct2]> arr;
|
|
}
|