view tests/mini/bug2.d @ 590:1ecb43102d12

Allow VarDecl inside AttributeDecl inside DeclExp. Fixes run/e/extern_10_D
author Christian Kamm <kamm incasoftware de>
date Fri, 12 Sep 2008 13:11:32 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module bug2;
struct Vec { Vec barf() { return Vec(); } }
class test { this(Vec whee) { } }
void main() { Vec whee; new test(whee.barf()); }