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