Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

25 lines
345 B
C#

// Compiler options: -r:test-858-lib.dll
using System;
class X
{
public static int Main ()
{
Bar bar = new Bar ();
if (bar.Message != "bar")
return 1;
Foo foo = new Foo ();
if (foo.Message != "foo")
return 2;
C c = new C ();
c.get_Value ();
c.add_Arg (false);
Console.WriteLine ("Test ok");
return 0;
}
}