Files
WoofWare.PawPrint/WoofWare.PawPrint.Test/sourcesPure/ArgumentOrdering.cs
2025-06-27 10:54:00 +00:00

20 lines
332 B
C#

public class Program
{
public struct TestStruct
{
public int Value;
public TestStruct(ref int x)
{
Value = x;
}
}
public static int Main(string[] args)
{
int localVar = 42;
TestStruct t = new TestStruct(ref localVar);
return t.Value;
}
}