Land the long talked about "type system rewrite" patch. This
[llvm/stm8.git] / test / FrontendAda / vce.adb
blob85cdca066a296080d30fb4e78b971c899afccb66
1 -- RUN: %llvmgcc -S %s
2 procedure VCE is
3 S : String (1 .. 2);
4 B : Character := 'B';
5 begin
6 S := 'A' & B;
7 end;