Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / gtest-300.cs
1 // Compiler options: -warnaserror -warn:4
2
3 using System;
4 using System.Collections.Generic;
5
6 public class Test
7 {
8         public static void Main ()
9         {
10                 IDictionary<string,object> c =
11                         new Dictionary<string,object> ();
12                 foreach (string s in c.Keys)
13                         Console.WriteLine (s);
14         }
15 }