aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-friend-2.C
blob: 36799b435877c3b31242902521a1ea417e138c54 (plain)
1
2
3
4
5
6
7
// { dg-do compile { target c++11 } }

template<typename T> void f(T);

template <class T> class A {
  friend constexpr void f<>(int);  // { dg-error "'constexpr' is not allowed" }
};