aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/fn-template11.C
blob: ca25403f39b664110e32896ccc43dab053b961ae (plain)
1
2
3
4
5
6
7
8
9
10
11
// P0846R0
// { dg-do compile }
// { dg-options "-std=c++2a" }

int nonconst ();

int foo ()
{
  return blah < // { dg-error "not declared" }
    nonconst (), nonconst ();
}