Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
SetLang
/
bar.c
blob: b934356fa11cd11dbd15469e968328af1b681c2d [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
foo
();
class
A
{
public
:
A
()
{
this
->
i
=
foo
();
}
int
i
;
};
int
main
()
{
A a
;
if
(
a
.
i
==
21
)
{
printf
(
"passed foo is 21\n"
);
return
0
;
}
printf
(
"Failed foo is not 21\n"
);
return
-
1
;
}