Fix LinearGradientMode parameter validation to match corefx (#5672)
[mono.git] / mcs / tests / test-xml-041.cs
1 // Compiler options: -doc:xml-042.xml -warnaserror -warn:4
2 /// <summary />
3 public class EntryPoint
4 {
5   static void Main()
6   {
7   }
8
9   /// <summary>
10   /// <see cref="Decide(int)" />
11   /// </summary>
12   private class A
13   {
14     public virtual void Decide(int a)
15     {
16     }
17   }
18 }