Updated with review feedback.
[mono.git] / mcs / errors / cs1735.cs
1 // CS1735: XML comment on `S<T1,T2>' has a typeparamref name `T' that could not be resolved
2 // Line: 9
3 // Compiler options: -doc:dummy.xml /warnaserror /warn:2
4
5 /// <summary>
6 ///  Test
7 ///  <typeparamref name="T" />
8 /// </summary>
9 public struct S<T1, T2>
10 {
11 }