* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gnat.dg / unchecked_convert6.adb
bloba26a6a9b762a101146ea4b78e319426b65a46158
1 -- { dg-do run { target hppa*-*-* sparc*-*-* powerpc*-*-* } }
3 with Unchecked_Conversion;
5 procedure Unchecked_Convert6 is
7 subtype c_5 is string(1..5);
9 function int2c5 is -- { dg-warning "different sizes" }
10 new unchecked_conversion (source => integer, target => c_5);
12 c5 : c_5;
14 begin
16 c5 := int2c5(16#12#);
18 if c5 (4) /= ASCII.DC2 then
19 raise Program_Error;
20 end if;
22 end;