Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-273.cs
1 using System;
2
3 public class FooAttribute : Attribute {
4         public char [] Separator;
5 }
6
7 [Foo (Separator = new char[] {'A'})]
8 public class Tests {
9         public static void Main () {
10                 FooAttribute foo = (FooAttribute) (typeof (Tests).GetCustomAttributes (false) [0]);
11                 Console.WriteLine (foo.Separator);
12         }
13 }