Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-xml-058.cs
1 // Compiler options: -doc:xml-058.xml
2 using System; 
3
4 ///<summary>This file throws an error when compiled with XML documentation</summary>
5 public class GenericClass <gT>
6 {
7     gT m_data; 
8
9     ///<summary>This line caused bug #77183</summary>
10     public GenericClass (gT Data)
11     {
12         m_data = Data; 
13     }
14 }
15
16 class Foo
17 {
18     public static void Main () {}
19 }