mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-03 02:13:21 +00:00
12 lines
227 B
Text
12 lines
227 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
Comp := Rectangle {
|
|
property<int> prop;
|
|
}
|
|
|
|
Test := Rectangle {
|
|
Comp {
|
|
prop: 45;
|
|
}
|
|
}
|