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

cs1669.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e02d8c80f58e5d09101a21cd89edc7af1337d96 (plain)
1
2
3
4
5
6
7
// cs1669.cs: __arglist is not valid in this context
// Line: 6

public class E
{
    int this [__arglist] { get { return 1; } }
}