blob: b2f57ece9e30c875f214749afd79ae7d3aad83d3 [file] [log] [blame]
class X : Y {
int foo1;
#region something
int foo2 = 2;
#endregion
int foo()
{
#region something else
int foo3 = 3;
#region nested
int foo4 = 0;
#endregion
int foo5 = 0;
#endregion
}
}