Merge pull request #5439 from alexrp/master
[mono.git] / mcs / tests / dtest-cls-01.cs
1 // Compiler options: -warnaserror
2
3 using System;
4 using System.Collections.Generic;
5
6 [assembly: CLSCompliant (true)]
7
8 public class A
9 {
10         public static void Main ()
11         {
12         }
13
14         public void CLSCompliantMethod (dynamic[] parameter)
15         {
16         }
17
18         public void CLSCompliantMethod (IEnumerable<dynamic> parameter)
19         {
20         }
21 }