11 lines
165 B
C#
11 lines
165 B
C#
namespace Microsoft.CodeAnalysis.CSharp.Symbols;
|
|
|
|
internal enum ObsoleteDiagnosticKind
|
|
{
|
|
NotObsolete,
|
|
Suppressed,
|
|
Diagnostic,
|
|
Lazy,
|
|
LazyPotentiallySuppressed
|
|
}
|