/* Attempt to use the keyword this * in main method, or more generally, * in a static method. * * Carsten Butz, March 2003. */ class TestThisInStatic{ public static void main(String[] args){ System.out.println(this.toString()); } }