[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1503-7.cs
blobb7649d412c4293ffffbfe0375dd7a9ac0d722a08
1 // CS1503: Argument `#1' cannot convert `long' expression to type `ulong'
2 // Line: 17
4 class A
6 public static long Prop {
7 get {
8 return 1;
13 class Test
15 static void Main ()
17 Foo (A.Prop);
20 static void Foo (ulong l)