Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-300.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7384d47d94c521b45638d76eb45d91284a4d5210 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Compiler options: -warnaserror -warn:4

using System;
using System.Collections.Generic;

public class Test
{
        public static void Main ()
        {
                IDictionary<string,object> c =
                        new Dictionary<string,object> ();
                foreach (string s in c.Keys)
                        Console.WriteLine (s);
        }
}