10 lines
113 B
C++
10 lines
113 B
C++
|
#include "FunctionLevelLinkingTest.h"
|
||
|
|
||
|
int foo() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
return foo() + bar() + baz();
|
||
|
}
|