mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-03 17:51:57 +00:00
1105b7eff4
* gdb.cp: New directory. * gdb.cp/*: Copy from gdb.c++/*. * gdb.c++/*: Remove. * Makefile.in: Change gdb.c++ to gdb.cp. * configure.in: Ditto. * configure: Regnerate.
29 lines
238 B
C++
29 lines
238 B
C++
#include <stdio.h>
|
|
|
|
class A {
|
|
public:
|
|
int x;
|
|
int y;
|
|
int foo (int arg);
|
|
};
|
|
|
|
|
|
int A::foo (int arg)
|
|
{
|
|
x += arg;
|
|
return arg *2;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
A a;
|
|
|
|
a.x = 0;
|
|
a.x = 1;
|
|
a.y = 2;
|
|
|
|
printf ("a.x is %d\n", a.x);
|
|
return 0;
|
|
}
|
|
|