[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs8200-3.cs
blob52c87bf3e9c91c3f49fad9cf746ba4ad1b7df3ba
1 // CS8200: Out variable and pattern variable declarations are not allowed within constructor initializers, field initializers, or property initializers
2 // Line: 11
4 public class C
6 bool Prop { get; } = Foo (out int arg);
8 static bool Foo (out int arg)
10 arg = 2;
11 return false;