1 // { dg-shouldfail "uncaught exception" } test()2 void test() 3 { 4 int innerLocal = 20; 5 throw new Exception("foo"); 6 } main(string[]args)7 void main(string[] args) 8 { 9 string myLocal = "bar"; 10 test(); 11 } 12