[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs1061-9.cs
blob2d838ce4d338a5984002a8e1346232df29c4be95
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
4 class T {
5 public static int Main (string [] args )
7 int x = 1.E;
8 return 0;