view gcc/testsuite/g++.dg/template/call1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

//Origin: harinath@cs.umn.edu
//PR c++/10804
// G++ was not emiting the function foo.

// { dg-do run }


template<class T>
struct A
{
  A() { const void (*a)() = foo; }
  static const void foo() {}
};
int main(int argc, char *argv[])
{
  A<int> a;
}