use strict;
use warnings;
-use Test::More tests => 41 * 4;
+use Test::More tests => 45 * 4;
my ($obj, $pkg, $cb, $x, @a);
sub meh;
$x
}(qw/bar baz/);
####
+meh;
+####
+meh $_;
+####
meh $x;
####
-meh $x, 1 , 2;
+meh $x, 1, 2;
####
print;
####
+print $_;
+####
+print $x;
+####
print STDOUT "bananananananana\n";
####
print $x "oh hai\n";
use strict;
use warnings;
-use Test::More tests => 33 * 4 + 2;
+use Test::More tests => 36 * 4 + 2;
my ($obj, $x);
####
$obj = new $_ qq(bar baz);
####
+meh $_;
+####
+meh $_ 1, 2;
+####
meh $x;
####
+meh $x 1, 2;
+####
meh $x, 1, 2;
####
new Hlagh->wut;