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.
28 lines
238 B
C++
28 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;
|
|
}
|
|
|