[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-xml-060.cs
blob827482f25f1c979dc4554d67549f2226fbd25599
1 // Compiler options: -doc:xml-060.xml /warnaserror /warn:4
3 using System.Collections.Generic;
5 namespace Test {
6 /// <remarks>T:Test.DocMe</remarks>
7 /// <seealso cref="T:Test.DocMe`1" />
8 class DocMe {
10 /// <remarks>M:Test.DocMe.UseList(System.Collections.Generic.List{System.Int32})</remarks>
11 public static void UseList (List<int> list) {}
13 /// <remarks>M:Test.DocMe.Main</remarks>
14 public static void Main ()
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) {}
24 /// <remarks>M:Test.DocMe`1.UseList`1(System.Collections.Generic.List{``0})</remarks>
25 public void UseList<U> (List<U> list) {}
27 /// <remarks>M:Test.DocMe`1.RefMethod`1(`0@,``0@)</remarks>
28 public void RefMethod<U> (ref T t, ref U u) {}