[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs8200-4.cs
blobfbba19fedaf6299b51e81a09f0ea9d43352eda0b
1 // CS8200: Out variable and pattern variable declarations are not allowed within constructor initializers, field initializers, or property initializers
2 // Line: 8
4 using System;
6 public class C
8 event Action H = Foo (out var res);
10 static Action Foo (out int arg)
12 arg = 2;
13 return null;