GenericParameter.cs: override Module properly
[mcs.git] / tests / test-273.cs
blobdeedc0b128c8c1d9eed31f209cdd9619062454b1
1 using System;
3 public class FooAttribute : Attribute {
4 public char [] Separator;
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);