view tests/mini/mainvoidreturn.d @ 1180:f5729209a1d4

Remove some redundancy from the DValue hierarchy: all subclasses had a 'type' field and identical implementations of virtual function getType(). Move these to DValue itself, and make getType() non-virtual.
author Frits van Bommel <fvbommel wxs.nl>
date Tue, 31 Mar 2009 01:18:35 +0200
parents 815e1b8c6b00
children
line wrap: on
line source

void foo()
{}

void main()
{
  return foo();
}