Files
codeql/csharp/ql/test/query-tests/Bad Practices/Declarations/EmptyInterface/EmptyInterfaceBad.cs
2026-07-07 14:09:48 +01:00

8 lines
104 B
C#

using System;
class Bad
{
interface IsPrintable { } // $ Alert
class Form1 : IsPrintable { }
}