view tests/mini/bug17.d @ 1639:41145d30acb8

Merge.
author Christian Kamm <kamm incasoftware de>
date Mon, 08 Mar 2010 20:09:18 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug17;

struct Vec
{
    Vec opAdd(ref Vec b) { return Vec(); }
    Vec opMul(double a) { return Vec(); }
}
void main()
{
    Vec foo;
    Vec bar;
    auto whee=foo+bar*1f;
}