Bump mono-extensions to fix build break (#5677)
[mono.git] / mcs / errors / cs1735-2.cs
1 // CS1735: XML comment on `S.Test<U>()' has a typeparamref name `T' that could not be resolved
2 // Line: 9
3 // Compiler options: -doc:dummy.xml /warnaserror /warn:2
4
5 struct S
6 {
7         /// <summary>
8         ///  Test
9         ///  <typeparamref name="T" />
10         /// </summary>
11         public void Test<U> ()
12         {
13         }
14 }