aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/referenceexamples/coercion/example.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/referenceexamples/coercion/example.qml')
-rw-r--r--examples/declarative/referenceexamples/coercion/example.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/declarative/referenceexamples/coercion/example.qml b/examples/declarative/referenceexamples/coercion/example.qml
deleted file mode 100644
index c47678483..000000000
--- a/examples/declarative/referenceexamples/coercion/example.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import examples.coercion.people
-
-BirthdayParty {
- host: Boy {
- name: "Bob Jones"
- shoe_size: 12
- }
- guests: [
- Boy { name: "Leo Hodges" },
- Boy { name: "Jack Smith" },
- Girl { name: "Anne Brown" }
- ]
-}