mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-11 16:15:07 -04:00
8 lines
82 B
C++
8 lines
82 B
C++
struct A{
|
|
typedef int T;
|
|
virtual ~A();
|
|
};
|
|
struct B:public A{
|
|
using A::T;
|
|
};
|