add ISafeSerializationData
[mcs.git] / tests / gtest-351.cs
blob0607f0c263ef7d45a273bfb5cac0c4be237350b0
1 using System;
3 class TestThing
5 public int SetEnum (string a, Enum b)
7 return 0;
9 public int SetEnum (int a, Enum b)
11 return 1;
15 class Test
17 public static int Main (string [] args)
19 DayOfWeek? e = DayOfWeek.Monday;
20 TestThing t = new TestThing ();
21 return t.SetEnum ("hi", e);