aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR152257/inc1/Main.java
blob: 5eecaea64695019bc3cdcef15413551164516fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test;

import java.io.IOException;

public class Main {
        public void testMethod() throws IOException {
                methodThatThrows();
        }
 
        public static void methodThatThrows() throws IOException {
                System.out.println("Inside method that may throw an IOException");
        }
}