aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickitem2/data/childrenRectBug3.qml
blob: 25d6a526d226b99d18f23199037c84c6357d6736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Rectangle {
    width: 300
    height: 300

    Rectangle {
        height: childrenRect.height

        Repeater {
            model: 1
            Rectangle { }
        }
    }
}