2007-05-25 Jonathan Chambers <joncham@gmail.com>
[mcs.git] / tests / gtest-300.cs
blobf7837dcf8a0bd8b6a55cb477cd30b993dd23d829
1 // Compiler options: -warnaserror -warn:4
3 using System;
4 using System.Collections.Generic;
6 public class Test
8 public static void Main ()
10 IDictionary<string,object> c =
11 new Dictionary<string,object> ();
12 foreach (string s in c.Keys)
13 Console.WriteLine (s);