@@ -1052,11 +1052,11 @@ public static IEnumerable<object> ImmutableInstanceData
1052
1052
{
1053
1053
get
1054
1054
{
1055
- yield return new object [ ] { new string [ ] { } , new Immutable_Simple_Options ( "" , new int [ ] { } , default ( bool ) , default ( long ) ) } ;
1055
+ yield return new object [ ] { new string [ ] { } , new Immutable_Simple_Options ( null , new int [ ] { } , default ( bool ) , default ( long ) ) } ;
1056
1056
yield return new object [ ] { new [ ] { "--stringvalue=strval0" } , new Immutable_Simple_Options ( "strval0" , new int [ ] { } , default ( bool ) , default ( long ) ) } ;
1057
- yield return new object [ ] { new [ ] { "-i" , "9" , "7" , "8" } , new Immutable_Simple_Options ( "" , new [ ] { 9 , 7 , 8 } , default ( bool ) , default ( long ) ) } ;
1058
- yield return new object [ ] { new [ ] { "-x" } , new Immutable_Simple_Options ( "" , new int [ ] { } , true , default ( long ) ) } ;
1059
- yield return new object [ ] { new [ ] { "9876543210" } , new Immutable_Simple_Options ( "" , new int [ ] { } , default ( bool ) , 9876543210L ) } ;
1057
+ yield return new object [ ] { new [ ] { "-i" , "9" , "7" , "8" } , new Immutable_Simple_Options ( null , new [ ] { 9 , 7 , 8 } , default ( bool ) , default ( long ) ) } ;
1058
+ yield return new object [ ] { new [ ] { "-x" } , new Immutable_Simple_Options ( null , new int [ ] { } , true , default ( long ) ) } ;
1059
+ yield return new object [ ] { new [ ] { "9876543210" } , new Immutable_Simple_Options ( null , new int [ ] { } , default ( bool ) , 9876543210L ) } ;
1060
1060
yield return new object [ ] { new [ ] { "--stringvalue=strval0" , "-i" , "9" , "7" , "8" , "-x" , "9876543210" } , new Immutable_Simple_Options ( "strval0" , new [ ] { 9 , 7 , 8 } , true , 9876543210L ) } ;
1061
1061
}
1062
1062
}
0 commit comments