summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0257.cs
blob: 72a31432ab8946fdd96e56e94ae7b9ce3af51e4e (plain)
1
2
3
4
5
6
// CS0257: An __arglist parameter must be the last parameter in a formal parameter list
// Line: 5
class Test
{
    void Foo (__arglist, bool b) {}
}