Beef
Beef copied to clipboard
[Bug] `Enum.GetMaxValue<T>()` crashes IDE when switching to Wasm32 platform.
To replicate:
- Have the code below.
- Add a new "Wasm32" platform (It has to be this name, so I assume it has some specific configuration based on the name?)
- Switch to the new Wasm32 crashes IDE:
using System;
namespace Clean;
enum RefType : int {
None = 0,
}
static class Program
{
public const RefType MAX_VALID = Enum.GetMaxValue<RefType>();
public static void Main() {}
}