Friday, February 25, 2011

Aabstract_Static

/*
RULE:we can not use abstract-class as static keywords commibinations
*/

abstract static class Aabstract_Static_Class
{
public void test()
{
System.out println("modifier not allowed here");
}
}