[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0181-4.cs
blob80ed5629a9f7d50b4ad8b496afda0bb0f7bd666e
1 // CS0181: Attribute constructor parameter has type `System.Attribute', which is not a valid attribute parameter type
2 // Line: 6
4 using System;
6 [BAttribute (null)]
7 public class BAttribute : Attribute
9 public BAttribute (Attribute a)
13 public static void Main ()