move ada tests
[oota-llvm.git] / test / FrontendAda / non_lvalue.adb
1 -- RUN: %llvmgcc -c %s -o /dev/null
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;