git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-maciekd@11189 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
204 B
C
12 lines
204 B
C
#include <stdio.h>
|
|
|
|
#include "cast_operator/cast_operator_proxy.h"
|
|
|
|
int main() {
|
|
A *a = new_A();
|
|
if (strcmp(A_tochar(a), "hi"))
|
|
fprintf(stderr, "cast failed\n");
|
|
delete_A(a);
|
|
SWIG_exit(0);
|
|
}
|
|
|