swig/SWIG/Examples/test-suite/cast_operator.i
Dave Beazley 12f65db3be new tests
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4269 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2003-02-07 22:16:55 +00:00

13 lines
134 B
OpenEdge ABL

%module cast_operator
%inline %{
struct A
{
operator char*() const;
};
inline
A::operator char*() const
{ return "hi"; }
%}