Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Ticket #315 (closed defect: worksforme)

Opened 2 years ago

Last modified 2 years ago

Stdout doesn't correctly output a ubyte parameter

Reported by: geezusfreeek Assigned to: kris
Priority: normal Milestone: 0.96 Beta 2
Component: IO Version: trunk
Keywords: Stdout ubyte Cc:

Description

The following code incorrectly outputs a zero. I did not test with other types besides uint (which works).

import tango.io.Stdout;
 
void main()
{
  ubyte test = 30;
  Stdout(test).newline;
}

Change History

03/08/07 00:07:18 changed by kris

  • status changed from new to closed.
  • resolution set to worksforme.
  • milestone set to 0.96 Beta 2.

works with SVN trunk :)

Thanks for noting it