old-cross-binutils/gdb/testsuite/gdb.cp/annota2.cc
Michael Chastain 1105b7eff4 2003-08-22 Michael Chastain <mec@shout.net>
* 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.
2003-08-23 03:55:59 +00:00

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;
}