mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-30 21:04:21 +00:00
11 lines
92 B
C++
11 lines
92 B
C++
int foo();
|
|
int bar();
|
|
|
|
int main()
|
|
{
|
|
if (foo() != bar()) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|