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

cs1670.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0172c0a540729912053e52c21170cbd29b18287a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs01670.cs: params is not valid in this context
// Line: 10

delegate object D (params object[] args);

class C
{
   public void Test ()
   {
      D d = delegate (params object[] args) {
		return this;
	  };
   }
}