mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
26 lines
307 B
C#
26 lines
307 B
C#
using System;
|
|
|
|
class EmptyCatchBlock
|
|
{
|
|
void bad()
|
|
{
|
|
try
|
|
{
|
|
}
|
|
catch (Exception)
|
|
{
|
|
}
|
|
}
|
|
|
|
void good()
|
|
{
|
|
try
|
|
{
|
|
}
|
|
catch (Exception)
|
|
{
|
|
// GOOD: This catch block should be empty
|
|
}
|
|
}
|
|
}
|