The sections that the ELF object writer has to create are very simple and
[llvm.git] / test / FrontendAda / non_lvalue.adb
blob71e7e102d05b61ec92e8deba9d0e5aaa33f025e5
1 -- RUN: %llvmgcc -S %s -I%p/Support
2 package body Non_LValue is
3 function A (Y : U) return String is
4 begin
5 return Y.X.B;
6 end;
7 end;