linux-packaging-mono/mcs/tests/dtest-error-03.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

31 lines
601 B
C#

using System;
using Microsoft.CSharp.RuntimeBinder;
using System.Dynamic;
using System.Runtime.CompilerServices;
public class C
{
}
public class Test
{
public static int Main ()
{
var getter = CallSite<Func<CallSite, object, object>>.Create (
Binder.GetMember (
CSharpBinderFlags.None, "n", null, new[] {
CSharpArgumentInfo.Create (CSharpArgumentInfoFlags.None, null) }));
try {
getter.Target (getter, new C ());
} catch (RuntimeBinderException e) {
if (e.Message == "`C' does not contain a definition for `n'")
return 0;
return 2;
}
return 1;
}
}