Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-xml-041.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7a55bd763487de536a381d7182f3b562dd4073c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Compiler options: -doc:xml-042.xml -warnaserror -warn:4
/// <summary />
public class EntryPoint
{
  static void Main()
  {
  }

  /// <summary>
  /// <see cref="Decide(int)" />
  /// </summary>
  private class A
  {
    public virtual void Decide(int a)
    {
    }
  }
}