[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-114.cs
1 using System;
2
3 class MyClass {
4
5         delegate bool IsAnything (Char c);
6
7         public static int Main () {
8                 IsAnything validDigit;
9                 validDigit = new IsAnything (Char.IsDigit);
10
11                 return 0;
12         }
13 }