git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-c@13211 626c5289-ae23-0410-ae9c-e8d60b6d4f22
14 lines
No EOL
226 B
C
14 lines
No EOL
226 B
C
#include "abstract_typedef2/abstract_change_proxy.h"
|
|
#include <assert.h>
|
|
|
|
int main(int argc, const char *argv[]) {
|
|
Foo *f = new_Foo();
|
|
Foo *f2 = Foo_blah(f);
|
|
|
|
assert(f2 != 0);
|
|
|
|
delete_Foo(f);
|
|
delete_Foo(f2);
|
|
|
|
return 0;
|
|
} |