1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Reification test

This commit is contained in:
Brian Fiete 2020-10-24 15:50:06 -07:00
parent fe3ba6d4d8
commit e8eec204fb
5 changed files with 25 additions and 1 deletions

View file

@ -1,5 +1,6 @@
FileVersion = 1
Dependencies = {corlib = "*", LibA = "*", LibB = "*"}
[Project]
Name = "TestsB"
StartupObject = "Program"
StartupObject = "TestsB.Program"

View file

@ -0,0 +1,10 @@
namespace TestsB
{
class Program
{
public static void Main()
{
}
}
}

View file

@ -0,0 +1,3 @@
Compile()
RunTests(true, false)
Compile()

View file

@ -0,0 +1,10 @@
namespace Tests
{
class Program
{
public static void Main()
{
}
}
}