mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
16 lines
150 B
C#
16 lines
150 B
C#
class UnusedLabelTest
|
|
{
|
|
void F1()
|
|
{
|
|
goto a;
|
|
a: // GOOD
|
|
;
|
|
}
|
|
|
|
void F2()
|
|
{
|
|
a: // $ Alert
|
|
;
|
|
}
|
|
}
|