blob: 7d0bcb10429c90ddadb127b194b22a467e7354af (
plain)
1
2
3
4
5
6
7
8
9
10
|
-- { dg-do run }
with GNAT.OS_Lib;
procedure Normalize_Pathname is
S : constant String := GNAT.OS_Lib.Normalize_Pathname
("/../tmp", Directory => "", Resolve_Links => True);
begin
null;
end Normalize_Pathname;
|