|
|
От: |
Baburin S.S.
|
|
| Дата: | 03.02.08 10:43 | ||
| Оценка: | |||
struct Base
{
Base(Base *) {}
};
struct A
{
static Base base;
struct _tag_x : public Base
{
_tag_x() : Base(reinterpret_cast<Base *>(&base)) {}
} x;
};