// PR c++/67876 - [6 Regression] ICE when compiling Firefox 38 // Caused by a patch for c/66516 - missing diagnostic on taking // the address of a builtin function // { dg-do compile } template struct S { }; extern void foo (int*); template void bar (S&s) { } S s; void foobar (S &s) { bar (s); }