aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp23/auto-array3.C
blob: fdf25470fc2ce424887001bbdf065df6fbc1ffa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/102414
// PR c++/101874
// { dg-do compile { target c++11 } }
// { dg-options "" }

constexpr int sz () { return 3; }

void f ()
{
  int a[3];
  const int N = 3;
  auto (*a2)[N] = &a;
  constexpr int M = 3;
  auto (*a3)[M] = &a;
  auto (*a4)[sz()] = &a;
}