2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0021-2.cs
blob6b8046153580efd151e2c03e3e8b94689731f02a
1 // cs0021-2.cs: Cannot apply indexing with [] to an expression of type `System.Array'
2 // Line: 9
4 using System;
5 class X {
7 public void Foo (Array bar)
9 object baz = bar[0];
12 static void Main () {}