aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/blocks/InputRightCurly.java
blob: f9616c6c12c396aeb353c51dc17e52a12bc5c1ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
////////////////////////////////////////////////////////////////////////////////
// Test case file for checkstyle.
// Created: 2001
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle.checks.blocks;

class InputRightCurly
{
    void foo() throws InterruptedException
    {
        
            try
            {
               
            }
            catch (Exception e)
            {
                return;
            }
           
        }

    }
class UniqEmptyClass {private int a;}