view test/bug1.d @ 176:a074a5ff709c trunk

[svn r192] Fixed: String literals as constant expression was broken for utf16/32.
author lindquist
date Wed, 07 May 2008 00:58:36 +0200
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); }