summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR152257/base/Main.java
blob: fe7a67e0004ac408e52d0a0444d054367629cb7f (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");
        }
}