2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-706.cs
blob1cc147fdb1e48a55476b99a66ba3cdae2a3426a2
1 using System;
3 namespace Test
5 public abstract class CustomParentAttribute : Attribute
7 public abstract void DoSomething ();
10 [CustomChild]
11 public class MyClass
13 private sealed class CustomChildAttribute : CustomParentAttribute
15 public override void DoSomething ()
21 public static void Main ()