dwww Home | Show directory contents | Find package

// Test that was failing for Perl - the non-member Foo was being called when the member version was intended
%module inherit

%inline %{

const char* Foo(void) {
  return "Non-member Foo";
}

class CBase {
public:
  const char* Foo(void) {
    return "CBase::Foo";
  }
};

class CDerived : public CBase {};

%}

Generated by dwww version 1.15 on Tue Jul 2 00:25:53 CEST 2024.