aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/subst1.C
blob: 827af23d21e7ffde84f9b7f28f89a5a647382c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// { dg-do compile }

// Copyright (C) 2002 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 16 Sep 2002 <nathan@codesourcery.com>

// PR 7718. ICE.

template <typename OBJECT>
void default_initializer(const OBJECT &) { }


template <typename OBJECT, void init_function(const OBJECT &)>
class cContainer {
  public:
  template <typename INITIALIZER>
  void Add(const INITIALIZER &initializer) {
    init_function(initializer);
  }
};

int main() {
  cContainer<int, default_initializer<int> > c;
  
  c.Add<int>(42);
  
  return 0;
}