ByteBrawl - Static Restrictions - Non Access Modifiers - Encapsulation

Non Access Modifiers - Static Restrictions

Since static members are not tied to any instance, they don't have access to instance-specific data. This applies to static methods, who aren't able to use non-static fields or methods of the class. Below is an example demonstrating this. Try running it to see if it compiles. Where will the errors be?