/**
 * Demonstrates that you can't construct a Math object.
 * This class will not compile.
 *   
 *  @author Sara Sprenkle
 */
public class MathTest {

    public static void main(String args[]) {
        // Compiler displays an error: 
        // Math() has private access in Math
        Math math = new Math();
    }
}
