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