1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
3
4struct Foo {
5 field: string
6}
7
8export component Testcase {
9 property <[Foo]> model;
10 for item in model: Text {
11 text <=> item.field;
12// ^error{Two-way bindings to model data is not supported yet}
13 }
14}
15