aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/inlineComponentsChained.qml
blob: cc063b1bc2421624f5e5e3b95cc16c02b05136cc (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick

Item {
  component A : B { required foo }
  component B : C { property QtObject foo }
  component C : Item {
  }
  A { foo: QtObject {} }
}