aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/findMemberPrint.qml
blob: 69146eb06b67e70f9cd073f8f34d5775651b7a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQml

import TestTypes

QtObject {
    property var foooooooo: Foo {
        id: foo
    }

    function f(): void {
        foo.print()
    }
}