Skip to content

Commit

Permalink
Rename field
Browse files Browse the repository at this point in the history
  • Loading branch information
cston committed Oct 2, 2024
1 parent 6c66d20 commit bd68aec
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,14 @@ static void TestIfElse (bool decision)
private class SimpleType
{
[Kept]
public static int field;
public static int fieldKept;

[Kept]
public int memberKept {
[Kept]
get { return @field; }
get { return fieldKept; }
[Kept]
set { @field = value; }
set { fieldKept = value; }
}

[Kept]
Expand Down

0 comments on commit bd68aec

Please sign in to comment.