view gcc/testsuite/gnat.dg/array11.adb @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 84e7813d76e9
children
line wrap: on
line source

-- { dg-do compile }

with System;

procedure Array11 is

  type Rec is null record;
  type Index_T is mod System.Memory_Size;

  type Arr1 is array (1 .. 8) of aliased Rec; -- { dg-warning "padded" }
  type Arr2 is array (Index_T) of aliased Rec; -- { dg-warning "padded" }

  A1 : Arr1;
  A2 : Arr2;

begin
  null;
end;