aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/tooling_imports/main.qml
blob: cc2c49ad41a778e5ae39b0ff84b35946ee4899a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQml 2.0
import First
import Second
import Test   // Self import

QtObject {
    property DoSomething firstModule: DoSomething{}
    property CheckIt secondModule: CheckIt{}
    property int result: firstModule.success + secondModule.dummy
    property Ttt mine: Ttt{}
}