summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1735.cs
blob: de069c6c90ceefa2e75f6ae2e39ad99f918b3acf (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1735: XML comment on `S<T1,T2>' has a typeparamref name `T' that could not be resolved
// Line: 9
// Compiler options: -doc:dummy.xml /warnaserror /warn:2

/// <summary>
///  Test
///  <typeparamref name="T" />
/// </summary>
public struct S<T1, T2>
{
}