a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
27 lines
359 B
C#
27 lines
359 B
C#
// 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)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|