2010-01-01 07:32:07 +00:00
|
|
|
-- Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
2006-10-06 17:46:56 +00:00
|
|
|
--
|
|
|
|
-- This program is free software; you can redistribute it and/or modify
|
|
|
|
-- it under the terms of the GNU General Public License as published by
|
2007-08-23 17:49:23 +00:00
|
|
|
-- the Free Software Foundation; either version 3 of the License, or
|
2006-10-06 17:46:56 +00:00
|
|
|
-- (at your option) any later version.
|
|
|
|
--
|
|
|
|
-- This program is distributed in the hope that it will be useful,
|
|
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
-- GNU General Public License for more details.
|
|
|
|
--
|
|
|
|
-- You should have received a copy of the GNU General Public License
|
2007-08-23 17:49:23 +00:00
|
|
|
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2006-10-06 17:46:56 +00:00
|
|
|
|
|
|
|
procedure Watch is
|
|
|
|
|
2010-05-17 21:32:57 +00:00
|
|
|
procedure Foo (X : in out Integer) is
|
2006-10-06 17:46:56 +00:00
|
|
|
begin
|
2010-05-17 21:32:57 +00:00
|
|
|
X := 3; -- BREAK1
|
2006-10-06 17:46:56 +00:00
|
|
|
end Foo;
|
|
|
|
|
2010-05-17 21:32:57 +00:00
|
|
|
X : Integer := 1;
|
2006-10-06 17:46:56 +00:00
|
|
|
|
|
|
|
begin
|
2010-05-17 21:32:57 +00:00
|
|
|
Foo (X);
|
2006-10-06 17:46:56 +00:00
|
|
|
X := 2; -- BREAK2
|
|
|
|
end Watch;
|
|
|
|
|