aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/singleLineEmptyObjects.qml
blob: bb66e0c46bd8da6e9cc93102626781f8cc2b9748 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick

Item {
    id: test

    property var test: QtObject {

    }

    QtObject {
    }

    QtObject {

        property var test: QtObject {

            property int a

        }
    }
}