123456789101112131415161718192021222324252627282930 |
- discard """
- targets: "cpp"
- output: ''''''
- disabled: true
- """
- # bug #5140
- {.emit:"""
- #import <cassert>
- template <typename X> class C {
- public:
- int d;
- C(): d(1) { }
- C<X>& operator=(const C<X> other) {
- assert(d == 1);
- }
- };
- """.}
- type C[X] {.importcpp, header: "<stdio.h>", nodecl.} = object
- proc mkC[X]: C[X] {.importcpp: "C<'*0>()", constructor, nodecl.}
- proc foo(): C[int] =
- result = mkC[int]()
- let gl = foo()
|