From 7d95f485544632b79921a0916efa926864444036 Mon Sep 17 00:00:00 2001 From: Callum Anderson Date: Sat, 8 Mar 2014 13:12:59 +1100 Subject: [PATCH] Attribute declarations can have attributes --- stdx/d/parser.d | 1 + 1 file changed, 1 insertion(+) diff --git a/stdx/d/parser.d b/stdx/d/parser.d index 392d9e0..47e874e 100644 --- a/stdx/d/parser.d +++ b/stdx/d/parser.d @@ -1731,6 +1731,7 @@ class ClassFour(A, B) if (someTest()) : Super {}}c; if (currentIs(tok!":")) { node.attributeDeclaration = parseAttributeDeclaration(attr); + node.attributes = ownArray(attributes); return node; } else