Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-xml-060.cs
1 // Compiler options: -doc:xml-060.xml /warnaserror /warn:4
2
3 using System.Collections.Generic;
4
5 namespace Test {
6         /// <remarks>T:Test.DocMe</remarks>
7         /// <seealso cref="T:Test.DocMe`1" />
8         class DocMe {
9
10                 /// <remarks>M:Test.DocMe.UseList(System.Collections.Generic.List{System.Int32})</remarks>
11                 public static void UseList (List<int> list) {}
12
13                 /// <remarks>M:Test.DocMe.Main</remarks>
14                 public static void Main ()
15                 {
16                 }
17         }
18
19         /// <remarks>T:Test.DocMe`1</remarks>
20         class DocMe<T> {
21                 /// <remarks>M:Test.DocMe`1.UseList(System.Collections.Generic.List{`0})</remarks>
22                 public void UseList (List<T> list) {}
23
24                 /// <remarks>M:Test.DocMe`1.UseList`1(System.Collections.Generic.List{``0})</remarks>
25                 public void UseList<U> (List<U> list) {}
26
27                 /// <remarks>M:Test.DocMe`1.RefMethod`1(`0@,``0@)</remarks>
28                 public void RefMethod<U> (ref T t, ref U u) {}
29         }
30 }
31