[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-xml-058.cs
blobefa7e53e5924fddff9d26e7cf11ece2781b3bc5b
1 // Compiler options: -doc:xml-058.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 () {}