Merge pull request #496 from nicolas-raoul/unit-test-for-issue2907
[mono.git] / mcs / tests / test-700.cs
1 using System;
2
3 class FooAttribute : Attribute
4 {
5
6         public FooAttribute (string f)
7         {
8         }
9 }
10
11 [Foo (Bar)]
12 class Test
13 {
14
15         const string Bar = "Bar";
16 }
17
18 class Program
19 {
20
21         public static void Main ()
22         {
23         }
24 }