mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
11 lines
157 B
C#
11 lines
157 B
C#
using System;
|
|
|
|
class Good
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
class PrintableAttribute : Attribute { }
|
|
|
|
[Printable]
|
|
class Form1 { }
|
|
}
|