linux-packaging-mono/mcs/tests/test-primary-ctor-04.cs
Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

32 lines
456 B
C#

// Compiler options: -langversion:experimental
class Derived (int arg, ref byte b, out int o) : Base (out o)
{
public long field = arg;
public int fieldRef = b;
}
class Base
{
internal Base (out int o)
{
o = 8;
}
}
class X
{
public static int Main ()
{
int arg;
byte b = 4;
var d = new Derived (-5, ref b, out arg);
if (d.field != -5)
return 1;
if (d.fieldRef != 4)
return 2;
System.Console.WriteLine ("ok");
return 0;
}
}