* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / test-xml-043.cs
1 // Compiler options: -doc:xml-043.xml -warnaserror -warn:4
2 /// <summary />
3 public class EntryPoint
4 {
5   static void Main()
6   {
7   }
8
9   private class A
10   {
11     public virtual void Decide(int a)
12     {
13     }
14   }
15
16   /// <summary>
17   /// <see cref="Decide (int)" />
18   /// </summary>
19   private class B : A
20   {
21     public override void Decide(int a)
22     {
23     }
24   }
25 }
26