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