Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1001-8.cs
1 // CS1001: Unexpected symbol `,', expecting identifier
2 // Line: 8
3
4 static class Converter
5 {
6         static Dictionary<Options, string> options = new Dictionary<Options, string> () 
7         {
8                 { Options., "I am completed!" },
9         };
10 }