Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0257.cs
1 // CS0257: An __arglist parameter must be the last parameter in a formal parameter list
2 // Line: 5
3 class Test
4 {
5     void Foo (__arglist, bool b) {}
6 }