Switch to compiler-tester
[mono.git] / mcs / tests / gtest-159.cs
1 using System;
2 using System.Collections.Generic;
3
4 public class App {
5   public static void Main() {
6     Dictionary<string, int> values = new Dictionary<string, int>();
7     values["one"] = 1; values["two"] = 2;
8
9     foreach (string key in values.Keys) {
10       System.Console.WriteLine("key: {0}", key);
11     }
12   }
13 }