blob: 75143710252f1be848b1a8260c144a76ce29a544 [file] [log] [blame]
Duncan Sands021cf962011-03-31 10:03:32 +00001-- RUN: %llvmgcc -S -O2 -gnatn %s -I%p/Support
Duncan Sands1f59e092011-01-24 18:04:33 +00002package body Real_Cst is
3 Cst : constant Float := 0.0;
4 procedure Write (Stream : access Ada.Streams.Root_Stream_Type'Class) is
5 begin
6 Float'Write (Stream, Cst);
7 end;
8end;