OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / call5.C
1 // PR c++/36631
2 // { dg-options "-O0" }
3
4 template <typename T> struct B
5 {
6   struct C
7   {
8     __attribute__ ((always_inline)) C (C const &c) {}
9   };
10   void __attribute__ ((always_inline)) g (C c) {}
11 };
12
13 void
14 trigger (B <int> b, B <int>::C c)
15 {
16   b.g (c);
17 }