summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1061-7.cs
blob: dca11b0a50e082bf96e8e517eb21e3ba32d4b1af (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1061: Type `int' does not contain a definition for `Foo' and no extension method `Foo' of type `int' could be found. Are you missing an assembly reference?
// Line: 9


public class M
{
	public static void Main ()
	{
		1.Foo ("foo");
	}
}