The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
## name Basic passing
## failures 0
## cut

use utf8;

# Blah
$x = 1;

## name No use statements
## failures 1
## cut

# Blah
$x = 1;


## name Use statements, but no utf8
## failures 1
## cut

use strict;
use warnings;

# Blah
my $x = 1;


# setup vim: set filetype=perl tabstop=4 softtabstop=4 expandtab :
# setup vim: set shiftwidth=4 shiftround textwidth=78 nowrap autoindent :
# setup vim: set foldmethod=indent foldlevel=0 :