xxxxxxxxxx
//import std;
void nothrowStuff() nothrow {}
void pureStuff() pure {}
void stuff() {}
void main()
{
auto funcPtr = (0 == 0) ? &stuff : ¬hrowStuff;
auto funcPtr2 = (0 == 0) ? &stuff : &pureStuff;
}