2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 05:42:30 +00:00

Add test for regular functions added as member functions

[SVN r13348]
This commit is contained in:
Dave Abrahams
2002-04-02 21:11:57 +00:00
parent 6835c344eb
commit aed7e14d4b

View File

@@ -172,7 +172,7 @@ struct A
struct B : A
{
B() : x(1) {}
char const* name() { return "B"; }
static char const* name(B*) { return "B"; }
int x;
};