Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / test-819.cs
blobdf15e560121ac6741f4ce9fc960b0ca0a17c456a
1 using System;
3 public class AAttribute : Attribute
5 [AAttribute (1)]
6 public class BAttribute : AAttribute
8 public BAttribute ()
9 : base ()
13 public BAttribute (int a)
14 : base (a)
19 public AAttribute ()
23 protected AAttribute (int a)
27 public static int Main ()
29 typeof (BAttribute).GetCustomAttributes (true);
30 return 0;