summaryrefslogtreecommitdiff
path: root/test/FrontendAda/vce.adb
blob: 85cdca066a296080d30fb4e78b971c899afccb66 (plain)
1
2
3
4
5
6
7
-- RUN: %llvmgcc -S %s
procedure VCE is
  S : String (1 .. 2);
  B : Character := 'B';
begin
  S := 'A' & B;
end;