a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
199 B
C#
25 lines
199 B
C#
using System;
|
|
|
|
class FooAttribute : Attribute
|
|
{
|
|
|
|
public FooAttribute (string f)
|
|
{
|
|
}
|
|
}
|
|
|
|
[Foo (Bar)]
|
|
class Test
|
|
{
|
|
|
|
const string Bar = "Bar";
|
|
}
|
|
|
|
class Program
|
|
{
|
|
|
|
public static void Main ()
|
|
{
|
|
}
|
|
}
|