blob: 7c7e4f9eb0fc5d15bc459f8ccc2033328c657d28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Compiler options: -doc:xml-043.xml -warnaserror -warn:4
/// <summary />
public class EntryPoint
{
static void Main()
{
}
private class A
{
public virtual void Decide(int a)
{
}
}
/// <summary>
/// <see cref="Decide (int)" />
/// </summary>
private class B : A
{
public override void Decide(int a)
{
}
}
}
|