blob: 88964e3b881f094a3abdb27b06eaa584b891f943 [file] [log] [blame]
%module cast_operator
%rename(tochar) A::operator char*() const;
%inline %{
#include <string.h>
struct A
{
operator char*() const;
};
inline
A::operator char*() const
{
static char hi[16];
strcpy(hi, "hi");
return hi;
}
%}