view gcc/testsuite/gnat.dg/unchecked_convert5.adb @ 145:1830386684a0

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

-- { dg-do run { target hppa*-*-* sparc*-*-* powerpc*-*-* } }

with Unchecked_Conversion;

procedure Unchecked_Convert5 is

  subtype c_1 is string(1..1);

  function int2c1 is  -- { dg-warning "different sizes" }
    new unchecked_conversion (source => integer, target => c_1);

  c1 : c_1;

begin

  c1 := int2c1(16#12#);

  if c1 (1) /= ASCII.Nul then
    raise Program_Error;
  end if;

end;