TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs8200-5.cs
blobce4e647c155e6690599e249dc1b4af8c4ac51956
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 () is string s;
8 static object Foo ()
10 return null;