System.Drawing: added email to icon and test file headers
[mono.git] / mcs / errors / cs1061-10.cs
1 // CS1061: Type `int' does not contain a definition for `C' and no extension method `C' of type `int' could be found (are you missing a using directive or an assembly reference?)
2 // Line: 12
3
4 using System;
5
6 namespace TestEnum
7 {
8         public enum E
9         {
10                 A = 0,
11                 B = 1.
12                 C = 2
13         }
14 }