aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/unchecked_convert6.adb
blob: a26a6a9b762a101146ea4b78e319426b65a46158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- { dg-do run { target hppa*-*-* sparc*-*-* powerpc*-*-* } }

with Unchecked_Conversion;

procedure Unchecked_Convert6 is

  subtype c_5 is string(1..5);

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

  c5 : c_5;

begin

  c5 := int2c5(16#12#);

  if c5 (4) /= ASCII.DC2 then
    raise Program_Error;
  end if;

end;