[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs8200-2.cs
blobd5ad76374e7fd2b30075500e279b6cb0e7eaafee
1 // CS8200: Out variable and pattern variable declarations are not allowed within constructor initializers, field initializers, or property initializers
2 // Line: 6
4 public class C
6 bool res = Foo (out int arg);
8 static bool Foo (out int arg)
10 arg = 2;
11 return false;