Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs8200-5.cs
1 // CS8200: Out variable and pattern variable declarations are not allowed within constructor initializers, field initializers, or property initializers
2 // Line: 6
3
4 public class C
5 {
6         bool res = Foo () is string s;
7
8         static object Foo ()
9         {
10                 return null;
11         }
12 }