[w32file] Move MonoIO.Find{First,Next,Close} to managed
[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 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 }