File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -921,6 +921,13 @@ public partial class TestClass // VB doesn't require partial here (when just a s
921921}" ) ;
922922 }
923923
924+ [ Fact ]
925+ public async Task Issue1097_PartialMethodAsync ( )
926+ {
927+ await TestConversionVisualBasicToCSharpAsync ( @"Partial Private Sub DummyMethod()
928+ End Sub" , @"partial void DummyMethod();" ) ;
929+ }
930+
924931 [ Fact ]
925932 public async Task NestedClassAsync ( )
926933 {
Original file line number Diff line number Diff line change @@ -402,11 +402,4 @@ End If
402402 }
403403}" ) ;
404404 }
405-
406- [ Fact ]
407- public async Task Issue1097_PartialMethodAsync ( )
408- {
409- await TestConversionVisualBasicToCSharpAsync ( @"Partial Private Sub DummyMethod()
410- End Sub" , @"partial void DummyMethod();" ) ;
411- }
412405}
You can’t perform that action at this time.
0 commit comments