Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/contrib/reghunt/examples/29906b.cc
2023-03-06 14:48:14 +01:00

8 lines
82 B
C++

struct A{
typedef int T;
virtual ~A();
};
struct B:public A{
using A::T;
};