aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/inlineComponentFoundBeforeOtherImports.qml
blob: 85903727fba778df1c29062a4e016248089cc0b5 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.12

Item
{
    component Rectangle: Item {
        Component.onCompleted: console.info("Created")
    }
    Rectangle {}
}