[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1601.cs
1 // CS1601: Method or delegate parameter cannot be of type `ref System.TypedReference'
2 // Line: 10
3 using System;
4
5 class X {
6         static void Main ()
7         {
8         }
9
10         static void M (ref TypedReference a)
11         {
12         }
13 }