summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1644-28.cs
blob: d498b30e78fb603a4d3107b5c0a03e7090b3411e (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1644: Feature `extension methods' cannot be used because it is not part of the C# 2.0 language specification
// Line: 17
// Compiler options: -langversion:ISO-2

static class Extensions
{
	static string Foo (string s, this bool b, int i)
	{
		return s;
	}
}