import datahiding.Node;


/**
 * An example that illustrates package visibility
 *
 * Note: This class is not part of the example2 package.
 *       As a result, Node.value is not visible to this
 *       class (since it has package visibility).
 *
 * @version 1.0
 * @author  Prof. David Bernstein, James Madison University
 */
public class WillNotCompile
{
    Node   n = new Node();    
    String s = n.value;

}
