make room for $VERSION after package declaration (newer [PkgVersion] requires it)
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / B / Concise.pm
index 95837ae..50625e6 100644 (file)
@@ -1,14 +1,13 @@
 use strict;
 use warnings;
 package Devel::REPL::Plugin::B::Concise;
-use Devel::REPL::Plugin;
-
-use B::Concise ();
-
-B::Concise::compileOpts(qw(-nobanner));
 
+use Devel::REPL::Plugin;
+use B::Concise 0.62 ();
 use namespace::autoclean;
 
+B::Concise::compileOpts qw(-nobanner);
+
 sub BEFORE_PLUGIN {
     my $self = shift;
     $self->load_plugin('Turtles');