Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
cston committed Nov 22, 2021
1 parent a08d57f commit 2b389be
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4932,19 +4932,19 @@ public void Struct_ImplementSynthesizedConstructor()
struct S
{
int a = 1;
int b;
int b = 2;
}
";
var source1 =
@"
struct S
{
int a = 1;
int b;
int b = 2;
public S()
{
b = 2;
b = 3;
}
}
";
Expand Down

0 comments on commit 2b389be

Please sign in to comment.