add ISafeSerializationData
[mcs.git] / tests / test-772.cs
blobff94e1ca9d39304f3dba113ae5695fae8bda452e
1 using System;
3 public class Test
5 static void Main ()
7 Foo fu = new Foo (null);
11 class Foo
13 public Foo (object o)
15 throw new ApplicationException ("wrong ctor");
18 public Foo (string s, params object[] args)