aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/static_assert10.C
blob: 216f2595b6bd9a29c72f75dfb2c4a44326346509 (plain)
1
2
3
4
5
6
7
8
// PR c++/60254
// { dg-do compile { target c++11 } }

template<typename T> bool foo(T)
{
  int i;
  static_assert(foo(i), "Error"); // { dg-error "non-constant condition|not usable" }
}