[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs1503-17.cs
blob23921edc939676cea5a155564c638eef4b7728fe
1 // CS1503: Argument `#1' cannot convert `ref long' expression to type `ref int'
2 // Line: 18
4 using System;
6 class X
8 long field;
10 static void Main ()
12 var x = new X ();
13 x.Run ();
16 void Run ()
18 Test (ref Prop);
21 static int Test (ref int y)
23 return y;
26 ref long Prop {
27 get {
28 return ref field;