1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00
2013-03-18 16:46:18 +01:00

23 lines
327 B
C#

using System;
// Test translation for lock statements
namespace Tester.Parent.Child
{
public class ChildClass
{
private ParentClass myp = null;
public ChildClass(int val)
{
myp = new ParentClass(val);
int tmp = myp.GetHashCode();
}
}
}