codeowners update
[mono.git] / mcs / tests / test-xml-059.cs
1 // Compiler options: -doc:xml-059.xml
2
3 using System.Collections.Generic;
4
5 // <see cref="int?" /> - this is invalid 1584/1658
6 // <see cref="List" />
7 /// <see cref="M:System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke2 ( )" />
8 /// <see cref="Bar" />
9 /// <see cref="ListBase(string)" />
10 /// <see cref="T:ListBase(string)" />
11 /// <see cref="T:ListBase&lt;string)" /><!-- it somehow passes -->
12 /// <see cref="T:List!$%Base()" /><!-- it somehow passes -->
13 /// <see cref="T:$%!" />
14 /// <see cref=".:Bar" />
15 /// <see cref="T:List(int)" />
16 public class Foo
17 {
18         static void Main ()
19         {
20         }
21
22         /// hogehoge
23         public string Bar;
24
25         /// fugafuga
26         public void ListBase (string s)
27         {
28         }
29 }
30
31 // <see cref="System.Nullable&lt;System.Int32&gt;" /> - cs1658/1574
32 /// <see cref="T:System.Nullable&lt;System.Int32&gt;" />
33 /// <see cref="T:System.Nullable(System.Int32)" />
34 public class ListBase<T>
35 {
36 }