2007-09-25 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / cs3000.cs
1 // cs3000.cs: Methods with variable arguments are not CLS-compliant
2 // Line: 10
3
4 using System;
5
6 [assembly: CLSCompliant (true)]
7
8 public class M
9 {
10     public void Method (__arglist)
11     {
12     }
13 }