repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gdb6
/
gdb
/
testsuite
/
gdb.cp
/
annota2.cc
blob
234752e49af20230f41aee10ab4a37bf03e78cde
1
#include <stdio.h>
2
3
class
A
{
4
public
:
5
int
x
;
6
int
y
;
7
int
foo
(
int
arg
);
8
};
9
10
11
int
A
::
foo
(
int
arg
)
12
{
13
x
+=
arg
;
14
return
arg
*
2
;
15
}
16
17
int
main
()
18
{
19
A a
;
20
21
a
.
x
=
0
;
22
a
.
x
=
1
;
23
a
.
y
=
2
;
24
25
printf
(
"a.x is %d
\n
"
,
a
.
x
);
26
return
0
;
27
}
28