summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0231-4.cs
blob: a32de038f7d87f8a4121dfc699c68168cb19271a (plain)
1
2
3
4
5
6
7
// CS0231: A params parameter must be the last parameter in a formal parameter list
// Line: 5
class Test
{
	void Foo (int i, params object[] o, params bool[] b) {}
}