make m_ConstantInt(int64_t) safely match ConstantInt's that are larger than i64.
[oota-llvm.git] / test / FrontendAda / non_lvalue.adb
1 -- RUN: %llvmgcc -c %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;