add ISafeSerializationData
[mcs.git] / tests / gtest-xml-1.cs
blob68949f216d589a22356611374949a8226ebf9660
1 // Compiler options: -doc:gxml-01.xml
2 using System;
4 ///<summary>This file throws an error when compiled with XML documentation</summary>
5 public class GenericClass <gT>
7 gT m_data;
9 ///<summary>This line caused bug #77183</summary>
10 public GenericClass (gT Data)
12 m_data = Data;
16 class Foo
18 public static void Main () {}