summaryrefslogtreecommitdiff
path: root/tests/auto/declarative/qdeclarativeitem/data/childrenRectBug3.qml
blob: 54b5b68adba125b208cf35242319a1a01d4ba4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Qt 4.7

Rectangle {
    width: 300
    height: 300

    Rectangle {
        height: childrenRect.height

        Repeater {
            model: 1
            Rectangle {	}
        }
    }
}