// Build don't link: // Special g++ Options: -ansi // Origin: Theo Papadopoulo // Special g++ Options: inline const unsigned& f(unsigned const& a) { return a; } template void g(const unsigned n) { double D[f(n)]; } template void g(unsigned const int) { } int main() { g(18); }