Sign in
pigweed
/
third_party
/
github
/
bazelembedded
/
rules_cc_toolchain
/
f6f84b77fdef282e53ed52c0c7fd01e0d1e7dd43
/
.
/
tests
/
dummy_test2.cc
blob: 5a748600b2ee8a4c3425e476b3389f225ed205f4 [
file
] [
log
] [
blame
]
#include
<iostream>
int
main
()
{
static
bool
a
=
true
;
if
(
a
)
{
std
::
cout
<<
"A"
<<
std
::
endl
;
}
else
{
std
::
cout
<<
"Not A"
<<
std
::
endl
;
}
return
0
;
}