View Javadoc
1   package com.puppycrawl.tools.checkstyle.grammar;
2   
3   public class InputCharLiteralSurrogatePair {
4       String X = "ища"; // parser is ok with this line
5       String Y = "н"; // parser is ok with this line
6       char Z = 'н'; // parser is NOT ok with this line
7   }