aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/unchecked_convert5b.adb
blob: 5232041c0d8f54c85985e11b3b2c1c94a1ff0d1a (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 i?86-*-* x86_64-*-* alpha*-*-* ia64-*-* } }

with Unchecked_Conversion;

procedure Unchecked_Convert5b 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.DC2 then
    raise Program_Error;
  end if;

end;