Files
codeql/csharp/ql/test/query-tests/Bad Practices/Declarations/EmptyInterface/EmptyInterfaceGood.cs
2018-08-02 17:53:23 +01:00

11 lines
157 B
C#

using System;
class Good
{
[AttributeUsage(AttributeTargets.Class)]
class PrintableAttribute : Attribute { }
[Printable]
class Form1 { }
}