Meatcandle

Results 4 issues of Meatcandle

I'm getting some error(s) for some generated fields but I cannot see the error, nor can I see the generated code in the emit window and attempting to comptime debug...

This snippet causes the IDE to crash in 0.43.4. ```cs interface ITest { public SplitList.Entry Get {/*putting a get; here in safe mode prevents it from crashing.*/} } ```

```cs public struct MyStruct where T : const int { ... } MyStruct a; //error MyStruct b; //ok MyStryct c; //ok ```

I've never been particularly fond of C++ but I think it does a couple of things right, such as `public:` and `private:`. It always bugged me that you have to...