add ISafeSerializationData
[mcs.git] / tests / test-114.cs
blob36925d310be5d29c1b6a0034c0ef25cff302f0cc
1 using System;
3 class MyClass {
5 delegate bool IsAnything (Char c);
7 public static int Main () {
8 IsAnything validDigit;
9 validDigit = new IsAnything (Char.IsDigit);
11 return 0;