1 // Test that extern template does not get emitted.
2 // Author: Matt Austern <austern@apple.com>
6 // { dg-final { scan-assembler-not ".globl __ZN3FooIiE5identEi" } }
10 X ident(X x) { return x; }
13 extern template struct Foo<int>;
15 int abcde(Foo<int>& foo, int n) {