aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmltypeloader/data/implicitcomponent.qml
blob: 9cebc88c8bad84a45b93bf656b052d13fbeddd89 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQml 2.2

QtObject {
    property Component some: QtObject {
        property int rrr: 2
        property Component onemore: QtObject {
            property int brrrr: -1
        }
    }
}