PR 2384
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / gdb2384.cc
CommitLineData
81fe8080
DE
1#include "gdb2384-base.h"
2
3class derived : public base
4{
5 public:
6 derived (int);
7};
8
9derived::derived (int _x)
10 : base (_x)
11{
12}
13
14int g;
15
16int
17main ()
18{
19 derived d (42);
20 g = d.meth (); // set breakpoint here
21 return 0;
22}
This page took 0.023566 seconds and 4 git commands to generate.