14 lines
186 B
C#
14 lines
186 B
C#
|
// CS0619: `AA' is obsolete: `'
|
||
|
// Line: 12
|
||
|
|
||
|
[System.Obsolete ("", true)]
|
||
|
class AA
|
||
|
{
|
||
|
}
|
||
|
|
||
|
class B {
|
||
|
public bool Foo (object b)
|
||
|
{
|
||
|
return b is AA;
|
||
|
}
|
||
|
}
|