Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0257.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74b8b322aa20ae0522ec03ed7e36399a15d9d6a5 (plain)
1
2
3
4
5
6
// cs0257.cs: An __arglist parameter must be the last parameter in a formal parameter list
// Line: 5
class Test
{
    void Foo (__arglist, bool b) {}
}