2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-131.cs
blob568576c96fa45231c8a636bd7eb088202e9882d9
1 using System;
3 public class SimpleAttribute : Attribute {
5 string n;
7 public SimpleAttribute (string name)
9 n = name;
13 public class Blah {
15 public enum Foo {
19 [Simple ("second")]
25 public static int Main ()
28 // We need a better test which does reflection to check if the
29 // attributes have actually been applied etc.
32 return 0;