mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 00:37:41 +01:00
12 lines
184 B
D
12 lines
184 B
D
|
// { dg-shouldfail "uncaught exception" }
|
||
|
void test()
|
||
|
{
|
||
|
int innerLocal = 20;
|
||
|
throw new Exception("foo");
|
||
|
}
|
||
|
void main(string[] args)
|
||
|
{
|
||
|
string myLocal = "bar";
|
||
|
test();
|
||
|
}
|