view gcc/testsuite/g++.dg/cpp2a/array-conv11.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

// PR c++/91364 - Implement P0388R4: Permit conversions to arrays of unknown bound.
// { dg-do compile { target c++2a } }
// { dg-options "-Wpedantic" }

// Test flexible array member.  Here we're binding int[] to int[].  This worked
// even before P0388R4.

typedef int T[];
extern T arr;
T &t1 = arr;

struct S {
  int i;
  int a[]; // { dg-warning "flexible array member" }
};

void f (int (&)[]);

void
test (S s)
{
  f (s.a);
}