Bake test case.

This commit is contained in:
2024-08-27 02:43:31 -04:00
parent 3d7bb108c4
commit 002f7d82a9
3 changed files with 20 additions and 0 deletions

7
test-bake/lib.cc Normal file
View File

@ -0,0 +1,7 @@
#include "lib.h"
int
lib::func()
{
return 42;
}

4
test-bake/lib.h Normal file
View File

@ -0,0 +1,4 @@
namespace lib
{
int func();
}

9
test-bake/main.cc Normal file
View File

@ -0,0 +1,9 @@
#include "lib.h"
int
main()
{
lib::func();
return 0;
}