xxxxxxxxxx
void main()
{
void f (){}
static void fs(){}
struct S( T){
T* f;
this( T)( T fl){
f= fl;
}
auto sf = new S !( typeof( f ))( &f );
auto sfs= new S !( typeof( fs))( &fs);