Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-706.cs
1 using System;
2
3 namespace Test
4 {
5         public abstract class CustomParentAttribute : Attribute
6         {
7                 public abstract void DoSomething ();
8         }
9
10         [CustomChild]
11         public class MyClass
12         {
13                 private sealed class CustomChildAttribute : CustomParentAttribute
14                 {
15                         public override void DoSomething ()
16                         {
17                         }
18                 }
19                 
20                 
21                 public static void Main ()
22                 {
23                 }
24         }
25 }