Sign in
qemu
/
meson
/
2fd39dc2b08a0d60471e13a2ed3216486be738cf
/
.
/
test cases
/
common
/
89 default library
/
eftest.cpp
blob: 4d4412d75f27224f480dba77e6b764cc1ea1fa96 [
file
] [
log
] [
blame
]
#include
"ef.h"
#include
<iostream>
int
main
(
int
,
char
**)
{
Ef
var
;
if
(
var
.
get_x
()
==
99
)
{
std
::
cout
<<
"All is fine.\n"
;
return
0
;
}
else
{
std
::
cout
<<
"Something went wrong.\n"
;
return
1
;
}
}