public class A 
{ 
   static String a; 
   static String b; 
    
   static 
   { 
      A.a = "not me"; 

      A.b = 
         A.a == null 
            ? null 
            : switch( "not me" ) 
              { 
                 default -> null; 
              }; 
   } 
} 