[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git] / gdb / testsuite / gdb.cp / destrprint.cc
blob0def8e482725d04cbe80a29995bfe45615b9fd4a
2 class Base
4 public:
5 int x, y;
7 Base() : x(0), y(1)
11 virtual ~Base()
13 // Break here.
17 class Derived : public Base
19 public:
20 int z;
22 Derived() : Base(), z(23)
26 ~Derived()
31 int main()
33 Derived d;
35 return 0;