repo.or.cz
/
cmake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
STYLE: Nightly Version update
[cmake.git]
/
Tests
/
Simple
/
simpleWe.cpp
blob
859e07c0660d4f2df62850ac172c1c4b3c2eb192
1
#include <stdio.h>
2
3
class
Foo
4
{
5
public
:
6
Foo
()
7
{
8
printf
(
"This one has nonstandard extension
\n
"
);
9
}
10
int
getnum
() {
return
0
; }
11
};
12
13
int
bar
()
14
{
15
Foo f
;
16
return
f
.
getnum
();
17
}