aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/inline1.C
blob: c7ae1f5cae9a1e19d3995099e489ffc3b68ba9ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do compile }
// { dg-options "-fno-default-inline -O0" }
// { dg-final { scan-assembler-not "\n_?_ZN1X3FooIiEEvT_\[: \t\n\]" } }

// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 27 Mar 2003 <nathan@codesourcery.com>

// PR 10047. bogus warning.

struct X 
{
  template <typename T> static void Foo (T)  {}
};

extern template void X::Foo<int> (int); // extern, so don't emit it

int main () {
  X::Foo (1);  // ok, we've seen the defn
}