C#: add test case

This commit is contained in:
Jami Cogswell
2022-12-09 17:25:11 -05:00
parent 446ac75c87
commit 22f8d97f31

View File

@@ -131,4 +131,15 @@ public class CollectionFlow
{
return a;
}
}
}
// A neutral model should not be created for a parameterless constructor.
public class ParameterlessConstructor
{
public bool IsInitialized;
public ParameterlessConstructor()
{
IsInitialized = true;
}
}