// Compiler options: -doc:xml-058.xml
using System;
///This file throws an error when compiled with XML documentation
public class GenericClass
{
gT m_data;
///This line caused bug #77183
public GenericClass (gT Data)
{
m_data = Data;
}
}
class Foo
{
public static void Main () {}
}