aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/expr_func_pkg.adb
blob: de519aecc48a2510c9ed66b68056018d530f3c9f (plain)
1
2
3
4
5
6
7
package body Expr_Func_Pkg is
   function Func (Val : Integer) return Boolean is
   begin
      Error;  --  { dg-error "\"Error\" is undefined" }
      return Val = 123;
   end Func;
end Expr_Func_Pkg;