Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs1061-9.cs
1 // CS1061: Type `int' does not contain a definition for `E' and no extension method `E' of type `int' could be found. Are you missing an assembly reference?
2 // Line: 7
3
4 class T {
5         public static int Main (string [] args )
6         {
7                 int x = 1.E;
8                 return 0;
9         }
10 }