提交 a131031c 编写于 作者: M Marek Safar

New test

上级 b226844c
using System;
class A
{
public int value;
public A (int value)
{
this.value = value;
}
}
class B
{
static void Foo (int i, out A a)
{
a = new A (i);
}
public static int Main ()
{
dynamic d = 6;
A a;
Foo (d, out a);
if (a.value != 6)
return 1;
return 0;
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册