summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeitem/data/childrenRectBug3.qml
blob: 911108aaf1cb47b9366bb160e84973cd3e4ba7fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 1.0

Rectangle {
    width: 300
    height: 300

    Rectangle {
        height: childrenRect.height

        Repeater {
            model: 1
            Rectangle { }
        }
    }
}