We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85f0589 commit 81ff635Copy full SHA for 81ff635
2 files changed
Tests/CSharp/MemberTests/MemberTests.cs
@@ -921,6 +921,13 @@ public partial class TestClass // VB doesn't require partial here (when just a s
921
}");
922
}
923
924
+ [Fact]
925
+ public async Task Issue1097_PartialMethodAsync()
926
+ {
927
+ await TestConversionVisualBasicToCSharpAsync(@"Partial Private Sub DummyMethod()
928
+ End Sub", @"partial void DummyMethod();");
929
+ }
930
+
931
[Fact]
932
public async Task NestedClassAsync()
933
{
Tests/CSharp/SpecialConversionTests.cs
@@ -402,11 +402,4 @@ End If
402
403
404
405
-
406
- [Fact]
407
- public async Task Issue1097_PartialMethodAsync()
408
- {
409
- await TestConversionVisualBasicToCSharpAsync(@"Partial Private Sub DummyMethod()
410
- End Sub", @"partial void DummyMethod();");
411
- }
412
0 commit comments