acesso à variável sombreada na classe local

eu sou novo em java e estou confuso para o exemplo abaixo

public class Test {

   int testOne(){  //member method
       int x=5;
         class inTest  // local class in member method
           {
             void inTestOne(int x){
             System.out.print("x is "+x);
         //  System.out.print("this.x is "+this.x);
           }
  }
       inTest ins=new inTest(); // create an instance of inTest local class (inner class)
       ins.inTestOne(10);
       return 0;
   }
    public static void main(String[] args) {
   Test obj = new Test();
   obj.testOne();
}
}

por que não consigo acessar a variável sombreada no método inTestOne () com a palavra-chave "this" na linha 8

questionAnswers(2)

yourAnswerToTheQuestion