On 02/26/2013 09:00 PM, Jonathan M Davis wrote: > ... > > auto foo(T)(T blah) {...} > > int func() { return 7; } > > void bar() > { > ... > foo(func); //Does this call func or pass its address? > auto f = func; //Does this call func or take its address? > ... > } > ... Neither.