25 lines
199 B
C#
Raw Permalink Normal View History

using System;
class FooAttribute : Attribute
{
public FooAttribute (string f)
{
}
}
[Foo (Bar)]
class Test
{
const string Bar = "Bar";
}
class Program
{
public static void Main ()
{
}
}