Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-xml-1.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2a2dc460b4e4238d297f74dc13b51ddfac3c966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Compiler options: -doc:gxml-1.xml
using System; 

///<summary>This file throws an error when compiled with XML documentation</summary>
public class GenericClass <gT>
{
    gT m_data; 

    ///<summary>This line caused bug #77183</summary>
    public GenericClass (gT Data)
    {
        m_data = Data; 
    }
}

class Foo
{
    public static void Main () {}
}