// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 struct Foo { field: string } export component Testcase { property <[Foo]> model; for item in model: Text { text <=> item.field; // ^error{Two-way bindings to model data is not supported yet} } }