[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0119-8.cs
1 // CS0119: Expression denotes a `type', where a `variable', `value' or `method group' was expected
2 // Line: 10
3
4 class A
5 {
6         delegate string Test (string t);
7
8         public static void Main ()
9         {
10                 Test ("t");
11         }
12 }