Fix line/file info for methods added by using declarations

This commit is contained in:
William S Fulton 2022-02-26 20:07:58 +00:00
commit 961424a986
3 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,9 @@
%module xxx
struct Base {
void m(bool) {}
};
struct Derived : Base {
void m(bool) const {}
using Base::m;
};