1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-18 16:10:26 +02:00
Beef/IDE/Tests/BugW005/src/Program.bf
2020-07-19 05:48:22 -07:00

24 lines
277 B
Beef

#pragma warning disable 168
using System;
using System.Collections;
namespace Bug
{
class Program
{
public static void CallExtra()
{
/*CallExtra_Call
int val = Extra();
*/
}
static void Main()
{
int ig = 111;
//Test_Start
CallExtra();
}
}
}