blob: 0db62fe8752056466d822f6245a731b06c2d63de (
plain)
1
2
3
4
5
6
7
8
9
10
|
pragma Strict
import TestTypes
import QtQml
QtObject {
objectName: f1.location + " and " + f2.location
property Foreign1 f1: Foreign1 { location: "not here" }
property Foreign2 f2: Foreign2 { location: "not there" }
}
|