(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs8212.cs
blob14477fe11183767588e76043b01b8fd1ac7ea142
1 // cs8212.cs: Array creation present on attribute, but array is not initialized
2 // Line: 14
3 using System;
4 using System.Reflection;
6 [AttributeUsage (AttributeTargets.All)]
7 public class MineAttribute : Attribute {
8 public MineAttribute (Type [] t)
14 [Mine(new Type [2])]
15 public class Foo {
16 public static int Main ()
18 return 0;