18 lines
262 B
C#
18 lines
262 B
C#
|
// CS0619: `A' is obsolete: `'
|
||
|
// Line: 13
|
||
|
|
||
|
[System.Obsolete ("", true)]
|
||
|
class A
|
||
|
{
|
||
|
}
|
||
|
|
||
|
class AA
|
||
|
{
|
||
|
public AA ()
|
||
|
{
|
||
|
for (A aa = null; aa != null;) {
|
||
|
System.Console.WriteLine (aa);
|
||
|
}
|
||
|
}
|
||
|
}
|