disarray2077

Results 43 issues of disarray2077

The code below doesn't compile because of an "Identifier not found" error. ```cs public static void Main() { Object test = "abc"; void CapTest() { [Comptime] void Emit() { Compiler.MixinRoot("test.GetType();");...

The code below causes a crash in the method "ConstantToCurrent" ```cs public static void TestCrash(Object obj = "") { } public static void Main() { TestCrash(); } ``` Tested with:...

The code below causes the assert failure mentioned in the issue title when compiled using the IDE debug build. ```cs namespace System.Collections { public interface IVariantEnumerable { public VariantEnumeratorWrapper GetVariantEnumerator();...

The code below is causing a stack overflow crash, it appears that the delegate allocated in the loop condition is being unnecessarily kept on the stack during all loop interactions....

In the code below, there is an error "Abstract base method cannot be invoked" when trying to access the base property F1 in the derived class C3. However, this error...

The assertion in the code below fails when: - `Foo` has the `uint8[64]` padding. - `Foo` has the `[CRepr]` attribute. - `Foo` is being passed by value to Test. -...

The code below doesn't compile, but it compiles fine if you swap the `Test` method overloads. ```cs static String[?] ars = .("1", "2"); public static void Test(this TEnum items, TPredicate...

Example code: ```cs public static U TryCast(T val) where T : class where U : class { if (let casted = val as U) return casted; return null; // WARNING:...

The below code causes a segmentation fault: ```cs static{{(i)..Y ``` (https://trybeef.netlify.app/#/QvippL) Tested with: https://github.com/beefytech/Beef/commit/b4dc3039fcaf755605abdb328dbaaa77059ea759

The below code causes a internal parsing error: ```cs struct l where T