summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1061-9.cs
blob: 2d838ce4d338a5984002a8e1346232df29c4be95 (plain)
1
2
3
4
5
6
7
8
9
10
// 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?
// Line: 7

class T {
	public static int Main (string [] args )
	{
		int x = 1.E;
		return 0;
	}
}