2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-26 06:22:26 +00:00
Files
build/test/generators-test/a.cpp
Vladimir Prus 9029c81fce Test for poor main's per-source requirements.
* 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]
2002-10-02 12:38:13 +00:00

15 lines
113 B
C++

int foo();
int bar();
void z1(), z2();
int main()
{
foo();
bar();
z1();
z2();
return 0;
}