* expression.cs (Invocation.IsApplicable): Reorganize slightly to
[mono.git] / mcs / tests / gtest-300.cs
1 // Compiler options: -warnaserror -warn:4\r
2 \r
3 using System;\r
4 using System.Collections.Generic;\r
5 \r
6 public class Test\r
7 {\r
8         public static void Main ()\r
9         {\r
10                 IDictionary<string,object> c =\r
11                         new Dictionary<string,object> ();\r
12                 foreach (string s in c.Keys)\r
13                         Console.WriteLine (s);\r
14         }\r
15 }