Mehrdad Tue, 26 Jun 2012 09:17:55 -0700
void test1(T)(auto ref T) { } void test2() { int a = 5; test1!(int)(a); }
Is there any reason this should fail?