2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Added future generators test -- not automated now.

[SVN r14926]
This commit is contained in:
Vladimir Prus
2002-08-16 14:25:22 +00:00
parent 835b82eeae
commit 00be3e6cc4
32 changed files with 606 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
int foo();
int bar();
int main()
{
foo();
bar();
return 0;
}