aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/badAttachedPropertyTypeString.qml
blob: b06052d93f61d7663e5777b5a4c6988b25a50069 (plain)
1
2
3
4
5
import AttachedProperties 1.0
QtObject {
    // count has type int, so assigning string to it is wrong
    TestType.count: "hello, world"
}