f3e3aab35a
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
25 lines
363 B
C#
25 lines
363 B
C#
// CS0619: `Program.TestEventArgs' is obsolete: `FooBar'
|
|
// Line: 10
|
|
|
|
using System;
|
|
|
|
namespace Program
|
|
{
|
|
public class TestClass
|
|
{
|
|
public EventHandler<TestEventArgs> Foo;
|
|
}
|
|
|
|
[Obsolete(Messages.Test, true)]
|
|
public sealed class TestEventArgs : EventArgs
|
|
{
|
|
}
|
|
}
|
|
|
|
namespace Program
|
|
{
|
|
public static class Messages
|
|
{
|
|
public const string Test = "FooBar";
|
|
}
|
|
} |