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

cs0021-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55a18ea763f0303532a055b780b5f39b84204cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
class X {

public void Foo (Array bar)
{
  object baz = bar[0];
}

	static void Main () {}
}