[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0021-2.cs
blob0045986fed54c92c84a61a381962c9c003e53eff
1 // CS0021: 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];