view test/bug1.d @ 87:25d4fcce53f4 trunk

[svn r91] fixed some minor mistakes
author lindquist
date Sat, 03 Nov 2007 14:48:33 +0100
parents 77e3d1ddae3f
children
line wrap: on
line source

module bug1;
struct Foo { Foo opSub(ref Foo b) { return Foo(); } }
struct Bar { Foo whee; }
void test(ref Bar moo) { Foo nngh; auto plonk = nngh - moo.whee; }
void main() { Bar bar; test(bar); }