Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / opt102_pkg.ads
blob7afc3fe6ac7977e18aae11c7837b89db8a2001c4
1 package Opt102_Pkg is
3 type Enum is (One, Two, Three);
5 function Get (E : Enum; F, M : access Integer) return Integer
6 with Pre => (E = One) = (F = null and M = null) and
7 (E = Two) = (F /= null) and
8 (E = Three) = (M /= null);
10 end Opt102_Pkg;