[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs1654-4.cs
blobc568ddeb686f78468e4110c1e59b8e2a5b458b78
1 // CS1654: Cannot assign to members of `f' because it is a `using variable'
2 // Line: 22
4 using System;
6 struct Foo : IDisposable
8 public int this[int arg] {
9 set { }
12 public void Dispose ()
17 class Bar
19 static void Main ()
21 using (var f = new Foo ()) {
22 f[0] = 1;