# Define a page page { toolbar standard; }; # Define a standard toolbar toolbar standard { item { }; }; #### # Encounter the toolbar standard; line in the page config # Doesn't actually do anything $page->{}{'toolbar'} = $toolbar->{'standard'}; # complains about standard getting re-defined $toolbar->{'standard'} ||= {}; # also tried undef and dummy value instead of {} with no luck $page->{}{'toolbar'} = $toolbar->{'standard'}; # $toolbar->{'standard'} is actually populated sometime after I process $page->{}