Files
codeql/csharp/ql/test/query-tests/Concurrency/LockThis/LockThis.cs
2026-07-07 14:09:48 +01:00

18 lines
200 B
C#

using System;
class Program
{
Object lck = new Object();
void f()
{
lock (this) // $ Alert // Not OK
{
}
lock (lck) // OK
{
}
}
}