ignores
[mcs.git] / errors / gcs1061-3.cs
blob121766f85d915a4b468efa07a893865d8c4b256f
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 a using directive or an assembly reference?)
2 // Line: 7
4 class T {
5 public static int Main (string [] args )
7 int x = 1.E;
8 return 0;