blob: 6e3729a2294a21b5de7bafb9b712b1970a0354b7 [file] [log] [blame]
%module namespace_typedef_class
%inline %{
namespace ns {
struct S1
{
int n;
};
typedef struct
{
int n;
} S2;
}
%}