2006-12-05 Chris Toshok <toshok@ximian.com>
[mcs.git] / tests / gtest-xml-1.cs
blobd2a2dc460b4e4238d297f74dc13b51ddfac3c966
1 // Compiler options: -doc:gxml-1.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 () {}