blob: 80ed5629a9f7d50b4ad8b496afda0bb0f7bd666e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS0181: Attribute constructor parameter has type `System.Attribute', which is not a valid attribute parameter type
// Line: 6
using System;
[BAttribute (null)]
public class BAttribute : Attribute
{
public BAttribute (Attribute a)
{
}
public static void Main ()
{
}
}
|