1   package com.google.checkstyle.test.chapter4formatting.rule412nonemptyblocks;
2   
3   public class InputRightCurlySame {
4       public static void main(String[] args) {
5           boolean after = false;
6           try {
7           } finally { after = true; }
8       }
9   }