We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b6b1ed commit f2c6aa1Copy full SHA for f2c6aa1
ICSharpCode.Decompiler.Tests/TestCases/Correctness/InitializerTests.cs
@@ -375,11 +375,12 @@ public static void StructInitializerWithinObjectInitializer()
375
});
376
}
377
378
-#if true
+#if !NET40 && ROSLYN
379
public static ReadOnlySpan<byte> ReadOnlySpanInitializer_ByteArray()
380
{
381
return new byte[] { 1, 2, 3 };
382
383
+
384
public static ReadOnlySpan<int> ReadOnlySpanInitializer_Int32Array()
385
386
return new int[] { 1, 2, 3 };
0 commit comments