blob: 1b5d9eaec86e95e5f8ba360592232ead8e83a67e (
plain)
1
2
3
4
5
6
7
8
9
10
|
pragma Strict
import QtQml
import TestTypes
QtObject {
Component.onCompleted: {
// Call the factory function and then forget the object
const orphanedObj = CppBridge.singleObj(0)
}
}
|