a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
24 lines
218 B
C#
24 lines
218 B
C#
// CS0619: `A' is obsolete: `msg'
|
|
// Line: 21
|
|
|
|
using System;
|
|
|
|
[Obsolete ("msg", true)]
|
|
class A
|
|
{
|
|
public class M
|
|
{
|
|
public static void Foo ()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
class C
|
|
{
|
|
public static void Main ()
|
|
{
|
|
A.M.Foo ();
|
|
}
|
|
}
|