Updated with review feedback.
[mono.git] / mcs / errors / cs3000.cs
1 // CS3000: Methods with variable arguments are not CLS-compliant
2 // Line: 11
3 // Compiler options: -warnaserror -warn:1
4
5 using System;
6
7 [assembly: CLSCompliant (true)]
8
9 public class M
10 {
11     public void Method (__arglist)
12     {
13     }
14 }