#### Input ```csharp public MyType() : base(3) { } ``` #### Expected result After applying the SA1003 code fix, the code should be as follows: ```csharp public MyType() : base(3) { } ``` #### Actual result After applying the SA1003 code fix, the code is as follows: ```csharp public MyType() : base(3) { } ```