9 lines
148 B
C#
Raw Permalink Normal View History

// CS1057: `B._a': Static classes cannot contain protected members
// Line: 6
public static class B
{
protected static object _a = null;
}