mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-19 00:20:25 +02:00
25 lines
277 B
Beef
25 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();
|
||
|
}
|
||
|
}
|
||
|
}
|