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
View File
@@ -0,0 +1,7 @@
#include "lib.h"
int
lib::func()
{
return 42;
}
+4
View File
@@ -0,0 +1,4 @@
namespace lib
{
int func();
}
+9
View File
@@ -0,0 +1,9 @@
#include "lib.h"
int
main()
{
lib::func();
return 0;
}