/* Program that attempts to declare an object of class Math. * * Carsten Butz, September 2002 */ class TestMath{ public static void main(String[] args){ Math m = new Math(); } }