aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/icCycleViaProperty.qml
blob: c5aa4cfdf5d89c7f11e1aaf31ce88513bbe7f342 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.15

Item {
    component A : Item {
        property var test: B {}
    }
    component B: A {}
    A {}
}