18 lines
314 B
C#
Raw Permalink Normal View History

// CS0619: `ObsoleteException' is obsolete: `'
// Line: 15
using System;
[System.Obsolete("", true)]
class ObsoleteException: Exception {
}
class MainClass {
public void Method ()
{
try {
}
catch (ObsoleteException) {
}
}
}