aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickanimations/data/badtype2.qml
blob: 5341cb3d1ca3eb95e5bd405d232e79793eee4645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Rectangle {
    width: 240
    height: 320
    Rectangle {
        color: "red"
        width: 50; height: 50
        x: 100; y: 100
        NumberAnimation on x { from: "blue"; to: "green"; }
    }
}