[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0181-4.cs
1 // CS0181: Attribute constructor parameter has type `System.Attribute', which is not a valid attribute parameter type
2 // Line: 6
3
4 using System;
5
6 [BAttribute (null)]
7 public class BAttribute : Attribute
8 {
9         public BAttribute (Attribute a)
10         {
11         }
12         
13         public static void Main ()
14         {
15         }
16 }