xxxxxxxxxx
import core.stdc.stdio;
void foo() nothrow
{
printf("nothrow\n");
}
void foo()
printf("throw\n");
void test1()
foo();
void test2() nothrow
void main()
test1();
test2();