Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs0181.cs
blobf04342c4a8bd5a874e9d793a0a7169e5de4e44af
1 // CS0181: Attribute constructor parameter has type `int[,]', which is not a valid attribute parameter type
2 // Line: 13
4 using System;
6 class TestAttribute: Attribute
8 public TestAttribute (int[,] i) {}
11 public class E
13 [Test (null)]
14 public void Method () {}