You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code causes a divide by zero crash on compilation:
using System;
namespace simple_test;
class Program
{
public static ref T Test<T>() where T : var
{
static T dummy = default;
return ref dummy;
}
static void Main()
{
Test<void>();
}
}
The following code causes a divide by zero crash on compilation:
Tested with: cce1611
The text was updated successfully, but these errors were encountered: