[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1510-2.cs
1 // CS1510: A ref or out argument must be an assignable variable
2 // Line: 14
3 // this is bug #56016
4
5 using System;
6
7 class Test {
8         static void test(ref IConvertible i) {
9         }
10         
11         static void Main() {
12                 int i = 1;
13
14                 test (ref (IConvertible) i);
15         }
16 }