view tests/mini/bug72.d @ 880:2dfd05525e2e

Fixed bad return types in typinf.cpp
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Fri, 09 Jan 2009 20:08:06 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug72;

void main()
{
    char c = void;
    int i = void;
    c += i;
}