2 // Test whenever the runtime unwinder can deal with exceptions raised in the method
9 // Async exceptions will be raised while executing this method
10 // On amd64, this doesn't have a frame pointer
12 for (int i
= 0; i
< 10; ++i
)
16 // This does have a frame pointer
18 for (int i
= 0; i
< 10; ++i
)
26 public static int Main (String
[] args
) {
29 } catch (NullReferenceException ex
) {
34 } catch (NullReferenceException ex
) {