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

cs1611.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a72766a53314cb9182ff6784a8bf2e80a32f7a0 (plain)
1
2
3
4
5
6
7
// cs1611.cs: The params parameter cannot be declared as ref or out
// Line: 6

class Test
{
    public static void Error (params ref int args) {}
}