mirror of
https://github.com/boostorg/build.git
synced 2026-01-26 06:22:26 +00:00
* new/builtin.jam: Make 'obj' main type.
* new/generators-test/*: Try compiling the same CPP file with
different defines and linking in the same exe.
[SVN r15649]
15 lines
113 B
C++
15 lines
113 B
C++
|
|
int foo();
|
|
int bar();
|
|
|
|
void z1(), z2();
|
|
|
|
int main()
|
|
{
|
|
foo();
|
|
bar();
|
|
z1();
|
|
z2();
|
|
return 0;
|
|
}
|