13 lines
278 B
C#
Raw Normal View History

// CS8200: Out variable and pattern variable declarations are not allowed within constructor initializers, field initializers, or property initializers
// Line: 6
public class C
{
bool res = Foo (out int arg);
static bool Foo (out int arg)
{
arg = 2;
return false;
}
}