Skip to content

Commit

Permalink
adds disable test for issue #331
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianoc committed Feb 11, 2025
1 parent f31854e commit 5775b26
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Cecilifier.Core.Tests/Tests/Unit/Miscellaneous.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Cecilifier.Core.Misc;
using Cecilifier.Core.Tests.Tests.Unit.Framework;
Expand Down Expand Up @@ -348,6 +347,13 @@ public void TypeDeclarationResolverTests(string code)
}
}

[Test, Ignore("Issue #331")]
public void Lambda_With_DefaultParameter()
{
var ctx = RunCecilifier("var f = (int i = 41) => i + 1;");
Assert.Pass();
}

public class RecordTests : CecilifierUnitTestBase
{
[TestCase("class", TestName = "NullableContext and NullableAttribute are added to the type definition - class")]
Expand Down

0 comments on commit 5775b26

Please sign in to comment.