aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr198181/M.java
blob: ce7aff9d2295df2f9d098bb379b25a86200c7226 (plain)
1
2
3
4
5
6
7
8
9
10
package m;
public class M {
        public void run() {
        }
        public static void main(String[] args) {
                for (int i = 0; i < 3; i++) {
                        new M().run();
                }
        }
}