Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gnat.dg / test_direct_io.adb
blob0eb8aa20808e0b9cf714378ff2e37ca1977918cc
1 -- { dg-do run }
2 with Ada.Direct_IO;
4 procedure Test_Direct_IO is
6 package BDIO is new Ada.Direct_IO (Boolean);
7 use BDIO;
9 FD : File_Type;
11 begin
12 Create (FD, Form => "shared=yes");
13 Reset (FD);
14 Close (FD);
15 end Test_Direct_IO;