(boolean predicate)
| 134 | } |
| 135 | |
| 136 | private static void stackMap8(boolean predicate) { |
| 137 | try { |
| 138 | Object x = new Object(); |
| 139 | if (predicate) { |
| 140 | Object a = null; |
| 141 | } else { |
| 142 | Object a = null; |
| 143 | } |
| 144 | |
| 145 | try { |
| 146 | int a = 42; |
| 147 | throw new DummyException(); |
| 148 | } finally { |
| 149 | System.gc(); |
| 150 | x.toString(); |
| 151 | } |
| 152 | } catch (DummyException e) { |
| 153 | e.toString(); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | public static void main(String[] args) { |
| 158 | valueOf(1000); |