diff --git a/lib/Telemetry.pm6 b/lib/Telemetry.pm6 index 59aa5c6e611..4c8df54aa01 100644 --- a/lib/Telemetry.pm6 +++ b/lib/Telemetry.pm6 @@ -849,7 +849,10 @@ sub T () is export { Telemetry.new } # Provide limited export capability -------------------------------------------- sub EXPORT(*@args) { - (EXPORT::COLUMNS::{ @args.map: "&" ~ * }:p).Map + ( + |(EXPORT::COLUMNS::{ @args.map: '&' ~ * }:p), + |(EXPORT::DEFAULT::{ @args.map: '&' ~ * }:p), + ).Map } # Make sure we tell the world if we're implicitely told to do so ---------------