From 2f8f753a8c6b37d40dc2cf731fbf6dea462fc557 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Sun, 2 Nov 2025 08:49:01 +0100 Subject: [PATCH] Allow nullable annotations in ExtensionProperties test case --- ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs b/ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs index d4b62f34d..15dc35b8a 100644 --- a/ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs +++ b/ICSharpCode.Decompiler.Tests/PrettyTestRunner.cs @@ -562,7 +562,7 @@ namespace ICSharpCode.Decompiler.Tests [Test] public async Task ExtensionProperties([ValueSource(nameof(roslyn4OrNewerOptions))] CompilerOptions cscOptions) { - await RunForLibrary(cscOptions: cscOptions | CompilerOptions.Preview); + await RunForLibrary(cscOptions: cscOptions | CompilerOptions.Preview | CompilerOptions.NullableEnable); } [Test]