Beef icon indicating copy to clipboard operation
Beef copied to clipboard

A case of IDE hang and disappear

Open gopakumar-gg opened this issue 1 month ago • 0 comments

using System;

namespace BeefTest;

class Program
{
	public static void Main()
	{

	}

	// Put an '=' in the below line so as to define Int=int, the IDE hangs immediately,
	// and after 4 or 5 seconds it crashes (IDE just disappears).
	typealias Int
	Int Fun(Int bInherit)
	{
		return 1;
	}
}

gopakumar-gg avatar Nov 06 '25 09:11 gopakumar-gg